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.getPermissionWarningsByManifest": { | 320 "management.getPermissionWarningsByManifest": { |
321 "dependencies": [], | 321 "dependencies": [], |
322 "channel": "stable", | 322 "channel": "stable", |
323 "extension_types": ["extension", "packaged_app", "platform_app"] | 323 "extension_types": ["extension", "packaged_app", "platform_app"] |
324 }, | 324 }, |
325 "management.uninstallSelf": { | 325 "management.uninstallSelf": { |
326 "dependencies": [], | 326 "dependencies": [], |
327 "channel": "stable", | 327 "channel": "stable", |
328 "extension_types": ["extension", "packaged_app", "platform_app"] | 328 "extension_types": ["extension", "packaged_app", "platform_app"] |
329 }, | 329 }, |
| 330 // This is not a real API, only here for documentation purposes. |
| 331 // See http://crbug.com/275944 for background. |
| 332 "manifestTypes": { |
| 333 "internal": true, |
| 334 "channel": "stable", |
| 335 "contexts": "all" |
| 336 }, |
330 "mediaGalleries": { | 337 "mediaGalleries": { |
331 "dependencies": ["permission:mediaGalleries"], | 338 "dependencies": ["permission:mediaGalleries"], |
332 "contexts": ["blessed_extension"] | 339 "contexts": ["blessed_extension"] |
333 }, | 340 }, |
334 "mediaGalleriesPrivate": { | 341 "mediaGalleriesPrivate": { |
335 "dependencies": ["permission:mediaGalleriesPrivate"], | 342 "dependencies": ["permission:mediaGalleriesPrivate"], |
336 "contexts": ["blessed_extension"] | 343 "contexts": ["blessed_extension"] |
337 }, | 344 }, |
338 "mediaPlayerPrivate": { | 345 "mediaPlayerPrivate": { |
339 "platform": "chromeos", | 346 "platform": "chromeos", |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 }, | 595 }, |
589 "webview": { | 596 "webview": { |
590 "dependencies": ["permission:webview"], | 597 "dependencies": ["permission:webview"], |
591 "contexts": ["blessed_extension"] | 598 "contexts": ["blessed_extension"] |
592 }, | 599 }, |
593 "windows": { | 600 "windows": { |
594 "dependencies": ["api:tabs"], | 601 "dependencies": ["api:tabs"], |
595 "contexts": ["blessed_extension"] | 602 "contexts": ["blessed_extension"] |
596 } | 603 } |
597 } | 604 } |
OLD | NEW |