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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 }, | 266 }, |
267 "i18n": { | 267 "i18n": { |
268 "channel": "stable", | 268 "channel": "stable", |
269 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 269 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
270 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 270 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
271 }, | 271 }, |
272 "identity": { | 272 "identity": { |
273 "dependencies": ["permission:identity"], | 273 "dependencies": ["permission:identity"], |
274 "contexts": ["blessed_extension"] | 274 "contexts": ["blessed_extension"] |
275 }, | 275 }, |
| 276 "identity.onSignInChanged": { |
| 277 "channel": "dev", |
| 278 "dependencies": ["permission:identity"], |
| 279 "contexts": ["blessed_extension"] |
| 280 }, |
276 "identityPrivate": { | 281 "identityPrivate": { |
277 "dependencies": ["permission:identityPrivate"], | 282 "dependencies": ["permission:identityPrivate"], |
278 "contexts": ["blessed_extension"] | 283 "contexts": ["blessed_extension"] |
279 }, | 284 }, |
280 "idltest": { | 285 "idltest": { |
281 "dependencies": ["permission:idltest"], | 286 "dependencies": ["permission:idltest"], |
282 "contexts": ["blessed_extension"] | 287 "contexts": ["blessed_extension"] |
283 }, | 288 }, |
284 "idle": { | 289 "idle": { |
285 "dependencies": ["permission:idle"], | 290 "dependencies": ["permission:idle"], |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 "webview": { | 622 "webview": { |
618 "internal": true, | 623 "internal": true, |
619 "dependencies": ["permission:webview"], | 624 "dependencies": ["permission:webview"], |
620 "contexts": ["blessed_extension", "unblessed_extension"] | 625 "contexts": ["blessed_extension", "unblessed_extension"] |
621 }, | 626 }, |
622 "windows": { | 627 "windows": { |
623 "dependencies": ["api:tabs"], | 628 "dependencies": ["api:tabs"], |
624 "contexts": ["blessed_extension"] | 629 "contexts": ["blessed_extension"] |
625 } | 630 } |
626 } | 631 } |
OLD | NEW |