Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/common/extensions/api/_manifest_features.json

Issue 183883033: Move bookmarks_ui manifest key from chrome_settings_overrides to chrome_ui_overrides (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: formatting fixes Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "app": { 9 "app": {
10 "channel": "stable", 10 "channel": "stable",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "extension_types": ["platform_app"] 72 "extension_types": ["platform_app"]
73 }, 73 },
74 "browser_action": { 74 "browser_action": {
75 "channel": "stable", 75 "channel": "stable",
76 "extension_types": ["extension"] 76 "extension_types": ["extension"]
77 }, 77 },
78 "chrome_settings_overrides": [{ 78 "chrome_settings_overrides": [{
79 "channel": "dev", 79 "channel": "dev",
80 "extension_types": ["extension"], 80 "extension_types": ["extension"],
81 "platforms": ["win"] 81 "platforms": ["win"]
82 }, { // TODO(wittman): remove this section for M36.
83 "channel": "stable",
84 "extension_types": ["extension"],
85 "whitelist": [
86 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager
87 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
88 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444
89 ]
90 }],
91 "chrome_ui_overrides": [{
92 "channel": "dev",
93 "extension_types": ["extension"]
82 }, { 94 }, {
83 "channel": "stable", 95 "channel": "stable",
84 "extension_types": ["extension"], 96 "extension_types": ["extension"],
85 "whitelist": [ 97 "whitelist": [
86 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager 98 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager
87 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 99 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
88 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 100 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444
89 ] 101 ]
90 }], 102 }],
91 "chrome_url_overrides": { 103 "chrome_url_overrides": {
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 "extension_types": ["platform_app"], 442 "extension_types": ["platform_app"],
431 "location": "component" 443 "location": "component"
432 } 444 }
433 ], 445 ],
434 "webview": { 446 "webview": {
435 "channel": "stable", 447 "channel": "stable",
436 "extension_types": ["platform_app"], 448 "extension_types": ["platform_app"],
437 "min_manifest_version": 2 449 "min_manifest_version": 2
438 } 450 }
439 } 451 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698