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

Unified Diff: chrome/common/extensions/api/declarativeWebRequest.json

Issue 10367002: Make all extension api types fully qualified. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix webrequest tests Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/contextMenus.json ('k') | chrome/common/extensions/api/devtools_api.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/declarativeWebRequest.json
diff --git a/chrome/common/extensions/api/declarativeWebRequest.json b/chrome/common/extensions/api/declarativeWebRequest.json
index 5b6565753fc08ca53327385412daf32640fcfdce..c3d19dd5ea5bf3db63cc9fd680e73ef797ad3590 100644
--- a/chrome/common/extensions/api/declarativeWebRequest.json
+++ b/chrome/common/extensions/api/declarativeWebRequest.json
@@ -13,7 +13,7 @@
"description": "Matches network events by various criteria.",
"properties": {
"url": {
- "$ref": "UrlFilter",
+ "$ref": "declarative.UrlFilter",
"description": "Matches if the condition of the UrlFilter are fulfilled for the URL of the request.",
"optional": true
},
@@ -52,8 +52,11 @@
"options": {
"supportsListeners": false,
"supportsRules": true,
- "conditions": ["RequestMatcher"],
- "actions": ["CancelRequest", "RedirectRequest"]
+ "conditions": ["declarativeWebRequest.RequestMatcher"],
+ "actions": [
+ "declarativeWebRequest.CancelRequest",
+ "declarativeWebRequest.RedirectRequest"
+ ]
}
}
]
« no previous file with comments | « chrome/common/extensions/api/contextMenus.json ('k') | chrome/common/extensions/api/devtools_api.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698