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

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

Issue 642863003: Moving last app_view bits to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "app.currentWindowInternal": { 62 "app.currentWindowInternal": {
63 "noparent": true, 63 "noparent": true,
64 "internal": true, 64 "internal": true,
65 "channel": "stable", 65 "channel": "stable",
66 "contexts": ["blessed_extension"] 66 "contexts": ["blessed_extension"]
67 }, 67 },
68 "app.currentWindowInternal.setShape": { 68 "app.currentWindowInternal.setShape": {
69 "dependencies": ["permission:app.window.shape"], 69 "dependencies": ["permission:app.window.shape"],
70 "contexts": ["blessed_extension"] 70 "contexts": ["blessed_extension"]
71 }, 71 },
72 // The API for the *embedder* of appview. Appview has both an embedder and
73 // guest API, which are different.
74 "appViewEmbedderInternal": {
75 "internal": true,
76 "contexts": ["blessed_extension"],
77 "dependencies": ["permission:appview"]
78 },
79 // TODO(fsamuel,kalman): Rename this appViewGuestInternal.
Fady Samuel 2014/10/09 22:04:52 While you're at it Lucas, could you please take ca
80 "appViewInternal": {
81 "internal": true,
82 "channel": "dev",
83 "contexts": ["blessed_extension"]
84 },
72 "bluetooth": { 85 "bluetooth": {
73 "dependencies": ["manifest:bluetooth"], 86 "dependencies": ["manifest:bluetooth"],
74 "contexts": ["blessed_extension"] 87 "contexts": ["blessed_extension"]
75 }, 88 },
76 "bluetoothLowEnergy": { 89 "bluetoothLowEnergy": {
77 "dependencies": ["manifest:bluetooth"], 90 "dependencies": ["manifest:bluetooth"],
78 "contexts": ["blessed_extension"] 91 "contexts": ["blessed_extension"]
79 }, 92 },
80 "bluetoothPrivate": { 93 "bluetoothPrivate": {
81 "dependencies": ["permission:bluetoothPrivate"], 94 "dependencies": ["permission:bluetoothPrivate"],
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 }], 334 }],
322 "webViewRequest": [{ 335 "webViewRequest": [{
323 "dependencies": ["permission:webview"], 336 "dependencies": ["permission:webview"],
324 "contexts": ["blessed_extension"] 337 "contexts": ["blessed_extension"]
325 }, { 338 }, {
326 "channel": "stable", 339 "channel": "stable",
327 "contexts": ["webui"], 340 "contexts": ["webui"],
328 "matches": ["chrome://chrome-signin/*"] 341 "matches": ["chrome://chrome-signin/*"]
329 }] 342 }]
330 } 343 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698