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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
10 | 10 |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 }, | 322 }, |
323 "extension.onRequest": { | 323 "extension.onRequest": { |
324 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 324 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
325 }, | 325 }, |
326 "extension.sendNativeMessage": { | 326 "extension.sendNativeMessage": { |
327 "dependencies": ["permission:nativeMessaging"] | 327 "dependencies": ["permission:nativeMessaging"] |
328 }, | 328 }, |
329 "extension.sendRequest": { | 329 "extension.sendRequest": { |
330 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 330 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
331 }, | 331 }, |
| 332 // This is not a real API, only here for documentation purposes. |
| 333 // See http://crbug.com/275944 for background. |
| 334 "extensionsManifestTypes": { |
| 335 "internal": true, |
| 336 "channel": "stable", |
| 337 "contexts": ["blessed_extension"] |
| 338 }, |
332 "feedbackPrivate": { | 339 "feedbackPrivate": { |
333 "dependencies": ["permission:feedbackPrivate"], | 340 "dependencies": ["permission:feedbackPrivate"], |
334 "contexts": ["blessed_extension"] | 341 "contexts": ["blessed_extension"] |
335 }, | 342 }, |
336 "fileBrowserHandler": { | 343 "fileBrowserHandler": { |
337 "platforms": ["chromeos"], | 344 "platforms": ["chromeos"], |
338 "dependencies": ["permission:fileBrowserHandler"], | 345 "dependencies": ["permission:fileBrowserHandler"], |
339 "contexts": ["blessed_extension"] | 346 "contexts": ["blessed_extension"] |
340 }, | 347 }, |
341 "fileBrowserHandlerInternal": { | 348 "fileBrowserHandlerInternal": { |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 "internal": true, | 797 "internal": true, |
791 "channel": "stable", | 798 "channel": "stable", |
792 "dependencies": ["permission:webview"], | 799 "dependencies": ["permission:webview"], |
793 "contexts": ["blessed_extension"] | 800 "contexts": ["blessed_extension"] |
794 }, | 801 }, |
795 "windows": { | 802 "windows": { |
796 "dependencies": ["api:tabs"], | 803 "dependencies": ["api:tabs"], |
797 "contexts": ["blessed_extension"] | 804 "contexts": ["blessed_extension"] |
798 } | 805 } |
799 } | 806 } |
OLD | NEW |