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 // 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 "activityLogPrivate": { | 9 "activityLogPrivate": { |
| 10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 95 "bookmarks.import": { | 95 "bookmarks.import": { |
| 96 "extension_types": ["extension"], | 96 "extension_types": ["extension"], |
| 97 "location": "component" | 97 "location": "component" |
| 98 }, | 98 }, |
| 99 "brailleDisplayPrivate": { | 99 "brailleDisplayPrivate": { |
| 100 "dependencies": ["permission:brailleDisplayPrivate"], | 100 "dependencies": ["permission:brailleDisplayPrivate"], |
| 101 "contexts": ["blessed_extension"] | 101 "contexts": ["blessed_extension"] |
| 102 }, | 102 }, |
| 103 "browserAction": { | 103 "browserAction": { |
| 104 "dependencies": ["manifest:browser_action"], | 104 "dependencies": ["manifest:browser_action"], |
| 105 "contexts": ["blessed_extension", "unblessed_extension"] | |
|
Finnur
2013/10/15 10:44:21
I must admit I don't know what unblessed_extension
justinlin
2013/10/16 07:06:48
I don't quite know either. I think I added this wi
Finnur
2013/10/16 15:01:26
Um... can you remove it then? :)
justinlin
2013/10/16 19:31:29
Thought I did. Oh, I accidentally added it to the
| |
| 106 }, | |
| 107 "browserAction.showPopup": [{ | |
|
Finnur
2013/10/15 10:44:21
Please comment that you are restricting this to th
justinlin
2013/10/16 07:06:48
Done. I believe the plan is to first whitelist thi
Finnur
2013/10/16 15:01:26
I'd like to make this comment more explicit, for e
justinlin
2013/10/16 19:31:29
Done. OK, that wording seems better.
| |
| 108 "channel": "dev", | |
| 109 "dependencies": ["manifest:browser_action"], | |
| 105 "contexts": ["blessed_extension"] | 110 "contexts": ["blessed_extension"] |
| 106 }, | 111 }, { |
| 112 "channel": "stable", | |
| 113 "dependencies": ["manifest:browser_action"], | |
| 114 "whitelist": [ | |
| 115 "enhhojjnijigcajfphajepfemndkmdlo", // Dev | |
| 116 "pkedcjkdefgpdelpbcmbmeomcjbeemfm", // Trusted Tester | |
| 117 "fmfcbgogabcbclcofgocippekhfcmgfj", // Staging | |
| 118 "hfaagokkkhdbgiakmmlclaapfelnkoah", // Canary | |
| 119 "F155646B5D1CA545F7E1E4E20D573DFDD44C2540", // Trusted Tester (public) | |
| 120 "16CA7A47AAE4BE49B1E75A6B960C3875E945B264" // Release | |
| 121 ], | |
| 122 "contexts": ["blessed_extension"] | |
| 123 }], | |
| 107 "browsingData": { | 124 "browsingData": { |
| 108 "dependencies": ["permission:browsingData"], | 125 "dependencies": ["permission:browsingData"], |
| 109 "contexts": ["blessed_extension"] | 126 "contexts": ["blessed_extension"] |
| 110 }, | 127 }, |
| 111 "cast.channel": { | 128 "cast.channel": { |
| 112 "dependencies": ["permission:cast"], | 129 "dependencies": ["permission:cast"], |
| 113 "contexts": ["blessed_extension"] | 130 "contexts": ["blessed_extension"] |
| 114 }, | 131 }, |
| 115 "chromeosInfoPrivate": { | 132 "chromeosInfoPrivate": { |
| 116 "platform": "chromeos", | 133 "platform": "chromeos", |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 667 "internal": true, | 684 "internal": true, |
| 668 "channel": "stable", | 685 "channel": "stable", |
| 669 "dependencies": ["permission:webview"], | 686 "dependencies": ["permission:webview"], |
| 670 "contexts": ["blessed_extension"] | 687 "contexts": ["blessed_extension"] |
| 671 }, | 688 }, |
| 672 "windows": { | 689 "windows": { |
| 673 "dependencies": ["api:tabs"], | 690 "dependencies": ["api:tabs"], |
| 674 "contexts": ["blessed_extension"] | 691 "contexts": ["blessed_extension"] |
| 675 } | 692 } |
| 676 } | 693 } |
| OLD | NEW |