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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "contexts": ["blessed_extension"] | 108 "contexts": ["blessed_extension"] |
109 }, | 109 }, |
110 "bluetooth": { | 110 "bluetooth": { |
111 "dependencies": ["manifest:bluetooth"], | 111 "dependencies": ["manifest:bluetooth"], |
112 "contexts": ["blessed_extension"] | 112 "contexts": ["blessed_extension"] |
113 }, | 113 }, |
114 "bluetoothPrivate": { | 114 "bluetoothPrivate": { |
115 "dependencies": ["permission:bluetoothPrivate"], | 115 "dependencies": ["permission:bluetoothPrivate"], |
116 "contexts": ["blessed_extension"] | 116 "contexts": ["blessed_extension"] |
117 }, | 117 }, |
| 118 "bluetoothSocket": { |
| 119 "dependencies": ["manifest:bluetooth"], |
| 120 "contexts": ["blessed_extension"] |
| 121 }, |
118 "bookmarkManagerPrivate": { | 122 "bookmarkManagerPrivate": { |
119 "dependencies": ["permission:bookmarkManagerPrivate"], | 123 "dependencies": ["permission:bookmarkManagerPrivate"], |
120 "contexts": ["blessed_extension"] | 124 "contexts": ["blessed_extension"] |
121 }, | 125 }, |
122 "bookmarks": { | 126 "bookmarks": { |
123 "dependencies": ["permission:bookmarks"], | 127 "dependencies": ["permission:bookmarks"], |
124 "contexts": ["blessed_extension"] | 128 "contexts": ["blessed_extension"] |
125 }, | 129 }, |
126 "bookmarks.export": { | 130 "bookmarks.export": { |
127 "extension_types": ["extension"], | 131 "extension_types": ["extension"], |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 "internal": true, | 813 "internal": true, |
810 "channel": "stable", | 814 "channel": "stable", |
811 "dependencies": ["permission:webview"], | 815 "dependencies": ["permission:webview"], |
812 "contexts": ["blessed_extension"] | 816 "contexts": ["blessed_extension"] |
813 }, | 817 }, |
814 "windows": { | 818 "windows": { |
815 "dependencies": ["api:tabs"], | 819 "dependencies": ["api:tabs"], |
816 "contexts": ["blessed_extension"] | 820 "contexts": ["blessed_extension"] |
817 } | 821 } |
818 } | 822 } |
OLD | NEW |