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

Side by Side Diff: extensions/common/matcher/url_matcher_constants.cc

Issue 13699007: Provide a mechanism to the decl. WebRequest API to match URLs without the query against a RegEx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 #include "extensions/common/matcher/url_matcher_constants.h" 5 #include "extensions/common/matcher/url_matcher_constants.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 namespace url_matcher_constants { 8 namespace url_matcher_constants {
9 9
10 // Keys of dictionaries for URL constraints 10 // Keys of dictionaries for URL constraints
(...skipping 10 matching lines...) Expand all
21 const char kPathSuffixKey[] = "pathSuffix"; 21 const char kPathSuffixKey[] = "pathSuffix";
22 const char kQueryContainsKey[] = "queryContains"; 22 const char kQueryContainsKey[] = "queryContains";
23 const char kQueryEqualsKey[] = "queryEquals"; 23 const char kQueryEqualsKey[] = "queryEquals";
24 const char kQueryPrefixKey[] = "queryPrefix"; 24 const char kQueryPrefixKey[] = "queryPrefix";
25 const char kQuerySuffixKey[] = "querySuffix"; 25 const char kQuerySuffixKey[] = "querySuffix";
26 const char kURLContainsKey[] = "urlContains"; 26 const char kURLContainsKey[] = "urlContains";
27 const char kURLEqualsKey[] = "urlEquals"; 27 const char kURLEqualsKey[] = "urlEquals";
28 const char kURLMatchesKey[] = "urlMatches"; 28 const char kURLMatchesKey[] = "urlMatches";
29 const char kURLPrefixKey[] = "urlPrefix"; 29 const char kURLPrefixKey[] = "urlPrefix";
30 const char kURLSuffixKey[] = "urlSuffix"; 30 const char kURLSuffixKey[] = "urlSuffix";
31 const char kStrippedURLMatchesKey[] = "strippedUrlMatches";
31 32
32 } // namespace url_matcher_constants 33 } // namespace url_matcher_constants
33 } // namespace extensions 34 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698