1 // Copyright (c) 2011 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 // Content settings API test
6 // Run with browser_tests
7 // --gtest_filter=ExtensionApiTest.ContentSettingsGetResourceIdentifiers
9 Object.prototype.forEach = function(f) {
11 if (this.hasOwnProperty(key))
16 var cs = chrome.contentSettings;
17 chrome.test.runTests([
18 function getResourceIdentifiers() {
22 "javascript": undefined,
29 "description": "Bar Plugin",
34 "notifications": undefined
36 contentTypes.forEach(function(type, identifiers) {
37 cs[type].getResourceIdentifiers(chrome.test.callbackPass(function(value) {
38 chrome.test.assertEq(identifiers, value);