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 extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 537 }, | 537 }, |
| 538 "management": { | 538 "management": { |
| 539 "dependencies": ["permission:management"], | 539 "dependencies": ["permission:management"], |
| 540 "contexts": ["blessed_extension"] | 540 "contexts": ["blessed_extension"] |
| 541 }, | 541 }, |
| 542 "management.getPermissionWarningsByManifest": { | 542 "management.getPermissionWarningsByManifest": { |
| 543 "dependencies": [], | 543 "dependencies": [], |
| 544 "channel": "stable", | 544 "channel": "stable", |
| 545 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 545 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 546 }, | 546 }, |
| 547 "management.getSelf": { | |
| 548 "dependencies": [], | |
| 549 "channel": "stable", | |
|
Daniel Nishi
2014/08/28 20:55:40
I wasn't entirely sure if this was the appropriate
scheib
2014/08/28 21:32:35
https://developer.chrome.com/extensions/management
Daniel Nishi
2014/08/28 22:04:17
Done.
| |
| 550 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | |
| 551 }, | |
| 547 "management.uninstallSelf": { | 552 "management.uninstallSelf": { |
| 548 "dependencies": [], | 553 "dependencies": [], |
| 549 "channel": "stable", | 554 "channel": "stable", |
| 550 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] | 555 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] |
| 551 }, | 556 }, |
| 552 // This is not a real API, only here for documentation purposes. | 557 // This is not a real API, only here for documentation purposes. |
| 553 // See http://crbug.com/275944 for background. | 558 // See http://crbug.com/275944 for background. |
| 554 "manifestTypes": { | 559 "manifestTypes": { |
| 555 "internal": true, | 560 "internal": true, |
| 556 "channel": "stable", | 561 "channel": "stable", |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 842 "internal": true, | 847 "internal": true, |
| 843 "channel": "stable", | 848 "channel": "stable", |
| 844 "dependencies": ["permission:webview"], | 849 "dependencies": ["permission:webview"], |
| 845 "contexts": ["blessed_extension"] | 850 "contexts": ["blessed_extension"] |
| 846 }, | 851 }, |
| 847 "windows": { | 852 "windows": { |
| 848 "dependencies": ["api:tabs"], | 853 "dependencies": ["api:tabs"], |
| 849 "contexts": ["blessed_extension"] | 854 "contexts": ["blessed_extension"] |
| 850 } | 855 } |
| 851 } | 856 } |
| OLD | NEW |