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

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

Issue 219613002: Add support for matching query parameters in URLMatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes the review comments from Dominic and Joao Created 6 years, 8 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 | « no previous file | components/url_matcher/url_matcher.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 (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 [ 5 [
6 { 6 {
7 "namespace": "events", 7 "namespace": "events",
8 "description": "The <code>chrome.events</code> namespace contains common typ es used by APIs dispatching events to notify you when something interesting happ ens.", 8 "description": "The <code>chrome.events</code> namespace contains common typ es used by APIs dispatching events to notify you when something interesting happ ens.",
9 "compiler_options": { 9 "compiler_options": {
10 "implemented_in": "chrome/browser/extensions/api/declarative/declarative_a pi.h" 10 "implemented_in": "chrome/browser/extensions/api/declarative/declarative_a pi.h"
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "description": "Matches if the path segment of the URL starts with a specified string.", 255 "description": "Matches if the path segment of the URL starts with a specified string.",
256 "optional": true 256 "optional": true
257 }, 257 },
258 "pathSuffix": { 258 "pathSuffix": {
259 "type": "string", 259 "type": "string",
260 "description": "Matches if the path segment of the URL ends with a s pecified string.", 260 "description": "Matches if the path segment of the URL ends with a s pecified string.",
261 "optional": true 261 "optional": true
262 }, 262 },
263 "queryContains": { 263 "queryContains": {
264 "type": "string", 264 "type": "string",
265 "description": "Matches if the query segment of the URL contains a s pecified string.", 265 "description": "Matches if the query segment of the URL contains a s pecified set of key value pairs with '&' as the delimiter. Query starting with a partial key or value is not supported, i.e., the string should start with a ful l key optionally followed by an equal sign and a value.",
battre 2014/04/01 14:46:07 s/Query starting/A queryContains filter starting/
266 "optional": true 266 "optional": true
267 }, 267 },
268 "queryEquals": { 268 "queryEquals": {
269 "type": "string", 269 "type": "string",
270 "description": "Matches if the query segment of the URL is equal to a specified string.", 270 "description": "Matches if the query segment of the URL is equal to a specified string.",
271 "optional": true 271 "optional": true
272 }, 272 },
273 "queryPrefix": { 273 "queryPrefix": {
274 "type": "string", 274 "type": "string",
275 "description": "Matches if the query segment of the URL starts with a specified string.", 275 "description": "Matches if the query segment of the URL starts with a specified string.",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 {"type": "array", "items": {"type": "integer"}, "description": " A pair of integers identiying the start and end (both inclusive) of a port range ."} 326 {"type": "array", "items": {"type": "integer"}, "description": " A pair of integers identiying the start and end (both inclusive) of a port range ."}
327 ] 327 ]
328 } 328 }
329 } 329 }
330 } 330 }
331 } 331 }
332 ] 332 ]
333 } 333 }
334 ] 334 ]
335 335
OLDNEW
« no previous file with comments | « no previous file | components/url_matcher/url_matcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698