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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
320 "management.uninstallSelf": { | 320 "management.uninstallSelf": { |
321 "dependencies": [], | 321 "dependencies": [], |
322 "channel": "stable", | 322 "channel": "stable", |
323 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 323 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
324 }, | 324 }, |
325 // This is not a real API, only here for documentation purposes. | 325 // This is not a real API, only here for documentation purposes. |
326 // See http://crbug.com/275944 for background. | 326 // See http://crbug.com/275944 for background. |
327 "manifestTypes": { | 327 "manifestTypes": { |
328 "internal": true, | 328 "internal": true, |
329 "channel": "stable", | 329 "channel": "stable", |
330 "contexts": "all" | 330 "contexts": "all", |
331 "matches": ["<all_urls>"] | |
not at google - send to devlin
2013/10/02 00:03:59
I updated the bug. This is all just arbitrary anyw
| |
331 }, | 332 }, |
332 "mediaGalleries": { | 333 "mediaGalleries": { |
333 "dependencies": ["permission:mediaGalleries"], | 334 "dependencies": ["permission:mediaGalleries"], |
334 "contexts": ["blessed_extension"] | 335 "contexts": ["blessed_extension"] |
335 }, | 336 }, |
336 "mediaGalleriesPrivate": { | 337 "mediaGalleriesPrivate": { |
337 "dependencies": ["permission:mediaGalleriesPrivate"], | 338 "dependencies": ["permission:mediaGalleriesPrivate"], |
338 "contexts": ["blessed_extension"] | 339 "contexts": ["blessed_extension"] |
339 }, | 340 }, |
340 "mediaPlayerPrivate": { | 341 "mediaPlayerPrivate": { |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
613 "webview": { | 614 "webview": { |
614 "internal": true, | 615 "internal": true, |
615 "dependencies": ["permission:webview"], | 616 "dependencies": ["permission:webview"], |
616 "contexts": ["blessed_extension"] | 617 "contexts": ["blessed_extension"] |
617 }, | 618 }, |
618 "windows": { | 619 "windows": { |
619 "dependencies": ["api:tabs"], | 620 "dependencies": ["api:tabs"], |
620 "contexts": ["blessed_extension"] | 621 "contexts": ["blessed_extension"] |
621 } | 622 } |
622 } | 623 } |
OLD | NEW |