Add chrome.i18nPrivate.getStrings for translations in component extensions
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / resources_private / get_strings / background.js
blob5e7b8245ba21984df42f728377051daf95284e4d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 chrome.test.runTests([
6   function testGetStrings() {
7     chrome.resourcesPrivate.getStrings(
8         "identity", chrome.test.callbackPass(function(data) {
9           // String from the identity component.
10           chrome.test.assertTrue('window-title' in data);
11           // String from the loadTimeData defaults.
12           chrome.test.assertTrue('language' in data);
13           chrome.test.succeed();
14         }));
15   }
16 ]);