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

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

Issue 1004233002: Moved the contextmenu webview API to stable, and removed the experimental API infrastructure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 5 years, 9 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 | « chrome/renderer/resources/renderer_resources.grd ('k') | 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 "internal": true, 398 "internal": true,
399 "channel": "stable", 399 "channel": "stable",
400 "contexts": ["blessed_extension"] 400 "contexts": ["blessed_extension"]
401 }, { 401 }, {
402 // webview uses webRequestInternal API. 402 // webview uses webRequestInternal API.
403 "channel": "stable", 403 "channel": "stable",
404 "internal": true, 404 "internal": true,
405 "contexts": ["webui"], 405 "contexts": ["webui"],
406 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 406 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
407 }], 407 }],
408 "webViewExperimentalInternal": [{
409 "internal": true,
410 "channel": "dev",
411 "contexts": ["blessed_extension"],
412 "dependencies": ["permission:webview"]
413 },
414 {
415 "internal": true,
416 "channel": "stable",
417 "contexts": ["blessed_extension"],
418 "dependencies": ["permission:webview"],
419 "whitelist": [
420 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578",
421 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB",
422 "1A26E32DE447A17CBE5E9750CDBA78F58539B39C",
423 "59048028102D7B4C681DBC7BC6CD980C3DC66DA3"
424 ]
425 }],
426 "webViewInternal": [{ 408 "webViewInternal": [{
427 "internal": true, 409 "internal": true,
428 "dependencies": ["permission:webview"], 410 "dependencies": ["permission:webview"],
429 "contexts": ["blessed_extension"] 411 "contexts": ["blessed_extension"]
430 }, { 412 }, {
431 "internal": true, 413 "internal": true,
432 "channel": "dev", 414 "channel": "dev",
433 "contexts": ["webui"], 415 "contexts": ["webui"],
434 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 416 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
435 }], 417 }],
436 "webViewRequest": [{ 418 "webViewRequest": [{
437 "dependencies": ["permission:webview"], 419 "dependencies": ["permission:webview"],
438 "contexts": ["blessed_extension"] 420 "contexts": ["blessed_extension"]
439 }, { 421 }, {
440 "channel": "stable", 422 "channel": "stable",
441 "contexts": ["webui"], 423 "contexts": ["webui"],
442 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"] 424 "matches": ["chrome://chrome-signin/*", "chrome://oobe/*"]
443 }] 425 }]
444 } 426 }
OLDNEW
« no previous file with comments | « chrome/renderer/resources/renderer_resources.grd ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698