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

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

Issue 28273006: <webview>: Implement declarativeWebRequest API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added tests Created 7 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 }, 704 },
705 "webrtc.castUdpTransport": { 705 "webrtc.castUdpTransport": {
706 "dependencies": ["permission:webrtc"], 706 "dependencies": ["permission:webrtc"],
707 "contexts": ["blessed_extension"] 707 "contexts": ["blessed_extension"]
708 }, 708 },
709 "webview": { 709 "webview": {
710 "internal": true, 710 "internal": true,
711 "dependencies": ["permission:webview"], 711 "dependencies": ["permission:webview"],
712 "contexts": ["blessed_extension", "unblessed_extension"] 712 "contexts": ["blessed_extension", "unblessed_extension"]
713 }, 713 },
714 "webViewRequest": {
715 "dependencies": ["permission:webview"],
716 "contexts": ["blessed_extension", "unblessed_extension"]
717 },
714 "webviewTag": { 718 "webviewTag": {
715 "internal": true, 719 "internal": true,
716 "channel": "stable", 720 "channel": "stable",
717 "dependencies": ["permission:webview"], 721 "dependencies": ["permission:webview"],
718 "contexts": ["blessed_extension"] 722 "contexts": ["blessed_extension"]
719 }, 723 },
720 "windows": { 724 "windows": {
721 "dependencies": ["api:tabs"], 725 "dependencies": ["api:tabs"],
722 "contexts": ["blessed_extension"] 726 "contexts": ["blessed_extension"]
723 } 727 }
724 } 728 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698