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

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

Issue 1582053002: Implement webview.captureVisibleRegion() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix minor errors (no change in functionality). Created 4 years, 11 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 }, { 453 }, {
454 "internal": true, 454 "internal": true,
455 "channel": "dev", 455 "channel": "dev",
456 "contexts": ["webui"], 456 "contexts": ["webui"],
457 "matches": [ 457 "matches": [
458 "chrome://chrome-signin/*", 458 "chrome://chrome-signin/*",
459 "chrome://media-router/*", 459 "chrome://media-router/*",
460 "chrome://oobe/*" 460 "chrome://oobe/*"
461 ] 461 ]
462 }], 462 }],
463 "webViewExperimentalInternal": [{
464 "internal": true,
465 "channel": "dev",
466 "dependencies": ["permission:webview"],
467 "contexts": ["blessed_extension"]
468 }, {
469 "internal": true,
Fady Samuel 2016/01/20 21:50:22 Drive by: I think we turn on experimental features
wjmaclean 2016/01/20 21:58:13 Done. I'm happy enough to turn this off. Is there
470 "channel": "dev",
471 "contexts": ["webui"],
472 "matches": [
473 "chrome://chrome-signin/*",
474 "chrome://media-router/*",
475 "chrome://oobe/*"
476 ]
477 }],
463 "webViewRequest": [{ 478 "webViewRequest": [{
464 "dependencies": ["permission:webview"], 479 "dependencies": ["permission:webview"],
465 "contexts": ["blessed_extension"] 480 "contexts": ["blessed_extension"]
466 }, { 481 }, {
467 "channel": "stable", 482 "channel": "stable",
468 "contexts": ["webui"], 483 "contexts": ["webui"],
469 "matches": [ 484 "matches": [
470 "chrome://chrome-signin/*", 485 "chrome://chrome-signin/*",
471 "chrome://media-router/*", 486 "chrome://media-router/*",
472 "chrome://oobe/*" 487 "chrome://oobe/*"
473 ] 488 ]
474 }] 489 }]
475 } 490 }
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_apitest.cc ('k') | extensions/common/api/web_view_internal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698