| OLD | NEW |
| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "extension_types": ["platform_app"] | 76 "extension_types": ["platform_app"] |
| 77 }, | 77 }, |
| 78 "browser_action": { | 78 "browser_action": { |
| 79 "channel": "stable", | 79 "channel": "stable", |
| 80 "extension_types": ["extension"] | 80 "extension_types": ["extension"] |
| 81 }, | 81 }, |
| 82 "chrome_settings_overrides": [{ | 82 "chrome_settings_overrides": [{ |
| 83 "channel": "dev", | 83 "channel": "dev", |
| 84 "extension_types": ["extension"], | 84 "extension_types": ["extension"], |
| 85 "platforms": ["win"] | 85 "platforms": ["win"] |
| 86 }, { // TODO(wittman): remove this section for M36. |
| 87 "channel": "stable", |
| 88 "extension_types": ["extension"], |
| 89 "whitelist": [ |
| 90 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager |
| 91 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
| 92 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 |
| 93 ] |
| 94 }], |
| 95 "chrome_ui_overrides": [{ |
| 96 "channel": "dev", |
| 97 "extension_types": ["extension"] |
| 86 }, { | 98 }, { |
| 87 "channel": "stable", | 99 "channel": "stable", |
| 88 "extension_types": ["extension"], | 100 "extension_types": ["extension"], |
| 89 "whitelist": [ | 101 "whitelist": [ |
| 90 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager | 102 "CB2E4E7174A398FCB3AFA6840500C2E1D22DA7B2", // Bookmark Manager |
| 91 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 | 103 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 |
| 92 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 | 104 "D57DE394F36DC1C3220E7604C575D29C51A6C495" // http://crbug.com/319444 |
| 93 ] | 105 ] |
| 94 }], | 106 }], |
| 95 "chrome_url_overrides": { | 107 "chrome_url_overrides": { |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 "extension_types": ["platform_app"], | 446 "extension_types": ["platform_app"], |
| 435 "location": "component" | 447 "location": "component" |
| 436 } | 448 } |
| 437 ], | 449 ], |
| 438 "webview": { | 450 "webview": { |
| 439 "channel": "stable", | 451 "channel": "stable", |
| 440 "extension_types": ["platform_app"], | 452 "extension_types": ["platform_app"], |
| 441 "min_manifest_version": 2 | 453 "min_manifest_version": 2 |
| 442 } | 454 } |
| 443 } | 455 } |
| OLD | NEW |