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

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: Addressed Istiaque's comments 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 }, 700 },
701 "webrtc.castUdpTransport": { 701 "webrtc.castUdpTransport": {
702 "dependencies": ["permission:webrtc"], 702 "dependencies": ["permission:webrtc"],
703 "contexts": ["blessed_extension"] 703 "contexts": ["blessed_extension"]
704 }, 704 },
705 "webview": { 705 "webview": {
706 "internal": true, 706 "internal": true,
707 "dependencies": ["permission:webview"], 707 "dependencies": ["permission:webview"],
708 "contexts": ["blessed_extension", "unblessed_extension"] 708 "contexts": ["blessed_extension", "unblessed_extension"]
709 }, 709 },
710 "webViewRequest": {
711 "dependencies": ["permission:webview"],
712 "contexts": ["blessed_extension", "unblessed_extension"]
713 },
710 "webviewTag": { 714 "webviewTag": {
711 "internal": true, 715 "internal": true,
712 "channel": "stable", 716 "channel": "stable",
713 "dependencies": ["permission:webview"], 717 "dependencies": ["permission:webview"],
714 "contexts": ["blessed_extension"] 718 "contexts": ["blessed_extension"]
715 }, 719 },
716 "windows": { 720 "windows": {
717 "dependencies": ["api:tabs"], 721 "dependencies": ["api:tabs"],
718 "contexts": ["blessed_extension"] 722 "contexts": ["blessed_extension"]
719 } 723 }
720 } 724 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698