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

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

Issue 623153004: app_shell: Add experimental shellPrivate extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (shell-private) fix gn Created 6 years, 2 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
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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 ], 163 ],
164 "matches": ["<all_urls>"] 164 "matches": ["<all_urls>"]
165 }, 165 },
166 "runtime.setUninstallURL": { 166 "runtime.setUninstallURL": {
167 "channel": "dev" 167 "channel": "dev"
168 }, 168 },
169 "serial": { 169 "serial": {
170 "dependencies": ["permission:serial"], 170 "dependencies": ["permission:serial"],
171 "contexts": ["blessed_extension"] 171 "contexts": ["blessed_extension"]
172 }, 172 },
173 "shellPrivate": {
174 "channel": "trunk",
175 "extension_types": ["platform_app"],
176 "contexts": ["blessed_extension"]
177 },
173 "socket": { 178 "socket": {
174 "dependencies": ["permission:socket"], 179 "dependencies": ["permission:socket"],
175 "contexts": ["blessed_extension"] 180 "contexts": ["blessed_extension"]
176 }, 181 },
177 "sockets.tcp": { 182 "sockets.tcp": {
178 "dependencies": ["manifest:sockets"], 183 "dependencies": ["manifest:sockets"],
179 "contexts": ["blessed_extension"] 184 "contexts": ["blessed_extension"]
180 }, 185 },
181 "sockets.tcpServer": { 186 "sockets.tcpServer": {
182 "dependencies": ["manifest:sockets"], 187 "dependencies": ["manifest:sockets"],
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 }], 298 }],
294 "webViewRequest": [{ 299 "webViewRequest": [{
295 "dependencies": ["permission:webview"], 300 "dependencies": ["permission:webview"],
296 "contexts": ["blessed_extension"] 301 "contexts": ["blessed_extension"]
297 }, { 302 }, {
298 "channel": "stable", 303 "channel": "stable",
299 "contexts": ["webui"], 304 "contexts": ["webui"],
300 "matches": ["chrome://chrome-signin/*"] 305 "matches": ["chrome://chrome-signin/*"]
301 }] 306 }]
302 } 307 }
OLDNEW
« no previous file with comments | « extensions/browser/api/shell_private/shell_private_api_unittest.cc ('k') | extensions/common/api/schemas.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698