Chromium Code Reviews| 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 // This features file defines manifest keys implemented under src/chrome. | 5 // This features file defines manifest keys implemented under src/chrome. |
| 6 // See extensions/common/features/* to understand this file, in particular | 6 // See extensions/common/features/* to understand this file, in particular |
| 7 // feature.h, simple_feature.h, and base_feature_provider.h. | 7 // feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 | 8 |
| 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
| 10 // | 10 // |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 279 "extension_types": [ | 279 "extension_types": [ |
| 280 "extension", "platform_app" | 280 "extension", "platform_app" |
| 281 ], | 281 ], |
| 282 "whitelist": [ | 282 "whitelist": [ |
| 283 "mdbihdcgjmagbcapkhhkjbbdlkflmbfo", // unit_tests | 283 "mdbihdcgjmagbcapkhhkjbbdlkflmbfo", // unit_tests |
| 284 "pafkbggdmjlpgkdkcbjmhmfcdpncadgh", // Google Now | 284 "pafkbggdmjlpgkdkcbjmhmfcdpncadgh", // Google Now |
| 285 "nmmhkkegccagdldgiimedpiccmgmieda", // In-app payments support app. | 285 "nmmhkkegccagdldgiimedpiccmgmieda", // In-app payments support app. |
| 286 "4B1D0E19C6C43C008C44A8278C8B5BFE15ABEB3C", | 286 "4B1D0E19C6C43C008C44A8278C8B5BFE15ABEB3C", |
| 287 "F7FA7ABC1ECB89BA8EE6656847EFABBF43BB9BCA", | 287 "F7FA7ABC1ECB89BA8EE6656847EFABBF43BB9BCA", |
| 288 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C", // TODO(rockot): Kill these. | 288 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C", // TODO(rockot): Kill these. |
| 289 "E61F841D8210B6A9891E5384CB665FBED31FCD7B" // http://crbug.com/281715 | 289 "E61F841D8210B6A9891E5384CB665FBED31FCD7B", // http://crbug.com/281715 |
| 290 | |
| 291 // TODO(joaodasilva): remove these two once we have the new policy to | |
| 292 // grant auto approval by ID. http://crbug.com/399392 | |
| 293 "A8208CCC87F8261AFAEB6B85D5E8D47372DDEA6B", | |
| 294 "A4577D8C2AF4CF26F40CBCA83FFA4251D6F6C8F8", | |
|
not at google - send to devlin
2014/08/04 20:09:24
I expect the trailing comma will break
Joao da Silva
2014/08/04 20:15:24
So this JSON-esque format was modified to parse co
| |
| 290 ] | 295 ] |
| 291 }, | 296 }, |
| 292 "omnibox": { | 297 "omnibox": { |
| 293 "channel": "stable", | 298 "channel": "stable", |
| 294 "extension_types": ["extension", "legacy_packaged_app"] | 299 "extension_types": ["extension", "legacy_packaged_app"] |
| 295 }, | 300 }, |
| 296 "optional_permissions": { | 301 "optional_permissions": { |
| 297 "channel": "stable", | 302 "channel": "stable", |
| 298 "extension_types": [ | 303 "extension_types": [ |
| 299 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | 304 "extension", "legacy_packaged_app", "hosted_app", "platform_app" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 388 }, | 393 }, |
| 389 "url_handlers": { | 394 "url_handlers": { |
| 390 "channel": "stable", | 395 "channel": "stable", |
| 391 "extension_types": ["platform_app"] | 396 "extension_types": ["platform_app"] |
| 392 }, | 397 }, |
| 393 "version": { | 398 "version": { |
| 394 "channel": "stable", | 399 "channel": "stable", |
| 395 "extension_types": "all" | 400 "extension_types": "all" |
| 396 } | 401 } |
| 397 } | 402 } |
| OLD | NEW |