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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
358 "dependencies": ["permission:nativeMessaging"] | 358 "dependencies": ["permission:nativeMessaging"] |
359 }, | 359 }, |
360 "extension.sendRequest": { | 360 "extension.sendRequest": { |
361 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 361 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
362 }, | 362 }, |
363 "extensionOptionsInternal": { | 363 "extensionOptionsInternal": { |
364 "internal": true, | 364 "internal": true, |
365 "contexts": ["blessed_extension"], | 365 "contexts": ["blessed_extension"], |
366 "dependencies": ["permission:embeddedExtensionOptions"] | 366 "dependencies": ["permission:embeddedExtensionOptions"] |
367 }, | 367 }, |
368 "extensionOptionsInternal.onSizeChanged": { | |
not at google - send to devlin
2014/07/30 17:44:57
you shouldn't need to specify this? it should be c
ericzeng
2014/07/30 23:29:26
Forgot to remove it after rebasing
| |
369 "internal": true, | |
370 "channel": "trunk", | |
371 "contexts": ["blessed_extension"], | |
372 "dependencies": ["permission:embeddedExtensionOptions"] | |
373 }, | |
368 // This is not a real API, only here for documentation purposes. | 374 // This is not a real API, only here for documentation purposes. |
369 // See http://crbug.com/275944 for background. | 375 // See http://crbug.com/275944 for background. |
370 "extensionsManifestTypes": { | 376 "extensionsManifestTypes": { |
371 "internal": true, | 377 "internal": true, |
372 "channel": "stable", | 378 "channel": "stable", |
373 "contexts": ["blessed_extension"] | 379 "contexts": ["blessed_extension"] |
374 }, | 380 }, |
375 "feedbackPrivate": { | 381 "feedbackPrivate": { |
376 "dependencies": ["permission:feedbackPrivate"], | 382 "dependencies": ["permission:feedbackPrivate"], |
377 "contexts": ["blessed_extension"] | 383 "contexts": ["blessed_extension"] |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
771 "internal": true, | 777 "internal": true, |
772 "channel": "stable", | 778 "channel": "stable", |
773 "dependencies": ["permission:webview"], | 779 "dependencies": ["permission:webview"], |
774 "contexts": ["blessed_extension"] | 780 "contexts": ["blessed_extension"] |
775 }, | 781 }, |
776 "windows": { | 782 "windows": { |
777 "dependencies": ["api:tabs"], | 783 "dependencies": ["api:tabs"], |
778 "contexts": ["blessed_extension"] | 784 "contexts": ["blessed_extension"] |
779 } | 785 } |
780 } | 786 } |
OLD | NEW |