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

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

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 // Constants used for the URLMatcher component of the Declarative API. 5 // Constants used for the URLMatcher component of the Declarative API.
6 6
7 #ifndef EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_ 7 #ifndef EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_
8 #define EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_ 8 #define EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_
9 9
10 namespace extensions { 10 namespace extensions {
(...skipping 13 matching lines...) Expand all
24 extern const char kPathSuffixKey[]; 24 extern const char kPathSuffixKey[];
25 extern const char kQueryContainsKey[]; 25 extern const char kQueryContainsKey[];
26 extern const char kQueryEqualsKey[]; 26 extern const char kQueryEqualsKey[];
27 extern const char kQueryPrefixKey[]; 27 extern const char kQueryPrefixKey[];
28 extern const char kQuerySuffixKey[]; 28 extern const char kQuerySuffixKey[];
29 extern const char kURLContainsKey[]; 29 extern const char kURLContainsKey[];
30 extern const char kURLEqualsKey[]; 30 extern const char kURLEqualsKey[];
31 extern const char kURLMatchesKey[]; 31 extern const char kURLMatchesKey[];
32 extern const char kURLPrefixKey[]; 32 extern const char kURLPrefixKey[];
33 extern const char kURLSuffixKey[]; 33 extern const char kURLSuffixKey[];
34 extern const char kStrippedURLMatchesKey[];
Yoyo Zhou 2013/04/08 18:20:43 nit: alphabetize
battre 2013/04/09 12:22:23 Done.
34 35
35 } // namespace url_matcher_constants 36 } // namespace url_matcher_constants
36 } // namespace extensions 37 } // namespace extensions
37 38
38 #endif // EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_ 39 #endif // EXTENSIONS_COMMON_MATCHER_URL_MATCHER_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698