Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: extensions/common/api/_api_features.json

Issue 2163883006: Fix the clipboard feature spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a nit. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | extensions/common/api/_permission_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "chrome://bluetooth-pairing/*", 143 "chrome://bluetooth-pairing/*",
144 "chrome://md-settings/*", 144 "chrome://md-settings/*",
145 "chrome://settings/*", 145 "chrome://settings/*",
146 "chrome://settings-frame/*" 146 "chrome://settings-frame/*"
147 ] 147 ]
148 }], 148 }],
149 "bluetoothSocket": { 149 "bluetoothSocket": {
150 "dependencies": ["manifest:bluetooth"], 150 "dependencies": ["manifest:bluetooth"],
151 "contexts": ["blessed_extension"] 151 "contexts": ["blessed_extension"]
152 }, 152 },
153 "clipboard": [{ 153 "clipboard": {
154 "dependencies": ["permission:clipboard", "permission:clipboardRead"], 154 "dependencies": ["permission:clipboard", "permission:clipboardRead"],
155 "contexts": ["blessed_extension"], 155 "contexts": ["blessed_extension"]
156 "platforms": ["chromeos"] 156 },
157 }, {
158 "channel": "dev",
159 "extension_types": ["platform_app"]
160 }],
161 "declarativeWebRequest": { 157 "declarativeWebRequest": {
162 "dependencies": ["permission:declarativeWebRequest"], 158 "dependencies": ["permission:declarativeWebRequest"],
163 "contexts": ["blessed_extension"] 159 "contexts": ["blessed_extension"]
164 }, 160 },
165 "diagnostics": { 161 "diagnostics": {
166 "dependencies": ["permission:diagnostics"], 162 "dependencies": ["permission:diagnostics"],
167 "extension_types": ["platform_app"], 163 "extension_types": ["platform_app"],
168 "contexts": ["blessed_extension"] 164 "contexts": ["blessed_extension"]
169 }, 165 },
170 "displaySource": { 166 "displaySource": {
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 }, { 511 }, {
516 "channel": "stable", 512 "channel": "stable",
517 "contexts": ["webui"], 513 "contexts": ["webui"],
518 "matches": [ 514 "matches": [
519 "chrome://chrome-signin/*", 515 "chrome://chrome-signin/*",
520 "chrome://media-router/*", 516 "chrome://media-router/*",
521 "chrome://oobe/*" 517 "chrome://oobe/*"
522 ] 518 ]
523 }] 519 }]
524 } 520 }
OLDNEW
« no previous file with comments | « no previous file | extensions/common/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698