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

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

Issue 10823313: Let url filter test the scheme in urlContains/Equals/Prefix/Suffix criteria (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 8 years, 4 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
Index: chrome/common/extensions/api/events.json
diff --git a/chrome/common/extensions/api/events.json b/chrome/common/extensions/api/events.json
index da3369413afed6bf96baf2d0e7b0f329a5789986..7342cf17379839e1c4e2c8fa71f7bef26142a51c 100644
--- a/chrome/common/extensions/api/events.json
+++ b/chrome/common/extensions/api/events.json
@@ -256,22 +256,22 @@
},
"urlContains": {
"type": "string",
- "description": "Matches if the URL contains a specified string.",
+ "description": "Matches if the URL (without port and fragment identifier) contains a specified string.",
Aaron Boodman 2012/08/15 04:07:13 without port? really?? that is super unexpected.
"optional": true
},
"urlEquals": {
"type": "string",
- "description": "Matches if the URL is equal to a specified string.",
+ "description": "Matches if the URL (without port and fragment identifier) is equal to a specified string.",
"optional": true
},
"urlPrefix": {
"type": "string",
- "description": "Matches if the URL starts with a specified string.",
+ "description": "Matches if the URL (without port and fragment identifier) starts with a specified string.",
"optional": true
},
"urlSuffix": {
"type": "string",
- "description": "Matches if the URL ends with a specified string.",
+ "description": "Matches if the URL (without port and fragment identifier) ends with a specified string.",
"optional": true
},
"schemes": {
« no previous file with comments | « no previous file | chrome/common/extensions/docs/apps/events.html » ('j') | chrome/common/extensions/matcher/url_matcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698