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

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

Issue 2210333002: Move WebView.captureVisibleRegion to stable API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove WebView experimental support. Created 4 years, 4 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/renderer/dispatcher.cc » ('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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 }, { 492 }, {
493 "internal": true, 493 "internal": true,
494 "channel": "dev", 494 "channel": "dev",
495 "contexts": ["webui"], 495 "contexts": ["webui"],
496 "matches": [ 496 "matches": [
497 "chrome://chrome-signin/*", 497 "chrome://chrome-signin/*",
498 "chrome://media-router/*", 498 "chrome://media-router/*",
499 "chrome://oobe/*" 499 "chrome://oobe/*"
500 ] 500 ]
501 }], 501 }],
502 "webViewExperimentalInternal": [{
503 "internal": true,
504 "channel": "dev",
505 "dependencies": ["permission:webview"],
506 "contexts": ["blessed_extension"]
507 }],
508 "webViewRequest": [{ 502 "webViewRequest": [{
509 "dependencies": ["permission:webview"], 503 "dependencies": ["permission:webview"],
510 "contexts": ["blessed_extension"] 504 "contexts": ["blessed_extension"]
511 }, { 505 }, {
512 "channel": "stable", 506 "channel": "stable",
513 "contexts": ["webui"], 507 "contexts": ["webui"],
514 "matches": [ 508 "matches": [
515 "chrome://chrome-signin/*", 509 "chrome://chrome-signin/*",
516 "chrome://media-router/*", 510 "chrome://media-router/*",
517 "chrome://oobe/*" 511 "chrome://oobe/*"
518 ] 512 ]
519 }] 513 }]
520 } 514 }
OLDNEW
« no previous file with comments | « no previous file | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698