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

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

Issue 12092096: Move c/c/extensions/matcher/ to top level extension dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TOT Created 7 years, 10 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/common/extensions/matcher/url_matcher_constants.h"
6
7 namespace extensions {
8 namespace url_matcher_constants {
9
10 // Keys of dictionaries for URL constraints
11 const char kPortsKey[] = "ports";
12 const char kSchemesKey[] = "schemes";
13 const char kHostContainsKey[] = "hostContains";
14 const char kHostEqualsKey[] = "hostEquals";
15 const char kHostPrefixKey[] = "hostPrefix";
16 const char kHostSuffixKey[] = "hostSuffix";
17 const char kHostSuffixPathPrefixKey[] = "hostSuffixPathPrefix";
18 const char kPathContainsKey[] = "pathContains";
19 const char kPathEqualsKey[] = "pathEquals";
20 const char kPathPrefixKey[] = "pathPrefix";
21 const char kPathSuffixKey[] = "pathSuffix";
22 const char kQueryContainsKey[] = "queryContains";
23 const char kQueryEqualsKey[] = "queryEquals";
24 const char kQueryPrefixKey[] = "queryPrefix";
25 const char kQuerySuffixKey[] = "querySuffix";
26 const char kURLContainsKey[] = "urlContains";
27 const char kURLEqualsKey[] = "urlEquals";
28 const char kURLMatchesKey[] = "urlMatches";
29 const char kURLPrefixKey[] = "urlPrefix";
30 const char kURLSuffixKey[] = "urlSuffix";
31
32 } // namespace url_matcher_constants
33 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/common/extensions/matcher/url_matcher_constants.h ('k') | chrome/common/extensions/matcher/url_matcher_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698