|  | // Copyright 2013 The Chromium Authors. All rights reserved. | 
|  | // Use of this source code is governed by a BSD-style license that can be | 
|  | // found in the LICENSE file. | 
|  |  | 
|  | #include "components/url_matcher/url_matcher_constants.h" | 
|  |  | 
|  | namespace url_matcher { | 
|  | namespace url_matcher_constants { | 
|  |  | 
|  | // Keys of dictionaries for URL constraints | 
|  | const char kPortsKey[] = "ports"; | 
|  | const char kSchemesKey[] = "schemes"; | 
|  | const char kHostContainsKey[] = "hostContains"; | 
|  | const char kHostEqualsKey[] = "hostEquals"; | 
|  | const char kHostPrefixKey[] = "hostPrefix"; | 
|  | const char kHostSuffixKey[] = "hostSuffix"; | 
|  | const char kHostSuffixPathPrefixKey[] = "hostSuffixPathPrefix"; | 
|  | const char kOriginAndPathMatchesKey[] = "originAndPathMatches"; | 
|  | const char kPathContainsKey[] = "pathContains"; | 
|  | const char kPathEqualsKey[] = "pathEquals"; | 
|  | const char kPathPrefixKey[] = "pathPrefix"; | 
|  | const char kPathSuffixKey[] = "pathSuffix"; | 
|  | const char kQueryContainsKey[] = "queryContains"; | 
|  | const char kQueryEqualsKey[] = "queryEquals"; | 
|  | const char kQueryPrefixKey[] = "queryPrefix"; | 
|  | const char kQuerySuffixKey[] = "querySuffix"; | 
|  | const char kURLContainsKey[] = "urlContains"; | 
|  | const char kURLEqualsKey[] = "urlEquals"; | 
|  | const char kURLMatchesKey[] = "urlMatches"; | 
|  | const char kURLPrefixKey[] = "urlPrefix"; | 
|  | const char kURLSuffixKey[] = "urlSuffix"; | 
|  |  | 
|  | }  // namespace url_matcher_constants | 
|  | }  // namespace url_matcher |