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

Side by Side Diff: chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h

Issue 10982044: Adding thirdParty property to RequestMatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 WebRequest API. 5 // Constants used for the WebRequest API.
6 6
7 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_
8 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_ 8 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_
9 9
10 namespace extensions { 10 namespace extensions {
11 namespace declarative_webrequest_constants { 11 namespace declarative_webrequest_constants {
12 12
13 // Signals to which WebRequestRulesRegistries are registered. 13 // Signals to which WebRequestRulesRegistries are registered.
14 extern const char kOnRequest[]; 14 extern const char kOnRequest[];
15 15
16 // Keys of dictionaries. 16 // Keys of dictionaries.
17 extern const char kCookieKey[]; 17 extern const char kCookieKey[];
18 extern const char kContentTypeKey[]; 18 extern const char kContentTypeKey[];
19 extern const char kDirectionKey[]; 19 extern const char kDirectionKey[];
20 extern const char kDomainKey[]; 20 extern const char kDomainKey[];
21 extern const char kExcludeContentTypeKey[]; 21 extern const char kExcludeContentTypeKey[];
22 extern const char kExcludeResponseHeadersKey[];
22 extern const char kExpiresKey[]; 23 extern const char kExpiresKey[];
23 extern const char kFilterKey[]; 24 extern const char kFilterKey[];
24 extern const char kFromKey[]; 25 extern const char kFromKey[];
25 extern const char kHttpOnlyKey[]; 26 extern const char kHttpOnlyKey[];
26 extern const char kInstanceTypeKey[]; 27 extern const char kInstanceTypeKey[];
27 extern const char kLowerPriorityThanKey[]; 28 extern const char kLowerPriorityThanKey[];
28 extern const char kMaxAgeKey[]; 29 extern const char kMaxAgeKey[];
29 extern const char kModificationKey[]; 30 extern const char kModificationKey[];
31 extern const char kNameContainsKey[];
32 extern const char kNameEqualsKey[];
30 extern const char kNameKey[]; 33 extern const char kNameKey[];
34 extern const char kNamePrefixKey[];
35 extern const char kNameSuffixKey[];
31 extern const char kPathKey[]; 36 extern const char kPathKey[];
32 extern const char kRedirectUrlKey[]; 37 extern const char kRedirectUrlKey[];
33 extern const char kResourceTypeKey[]; 38 extern const char kResourceTypeKey[];
39 extern const char kResponseHeadersKey[];
34 extern const char kSecureKey[]; 40 extern const char kSecureKey[];
41 extern const char kThirdPartyKey[];
vabr (Chromium) 2012/09/26 15:44:46 This is the only added key, others are just re-ord
35 extern const char kToKey[]; 42 extern const char kToKey[];
36 extern const char kUrlKey[]; 43 extern const char kUrlKey[];
44 extern const char kValueContainsKey[];
45 extern const char kValueEqualsKey[];
37 extern const char kValueKey[]; 46 extern const char kValueKey[];
38 extern const char kResponseHeadersKey[];
39 extern const char kExcludeResponseHeadersKey[];
40 extern const char kNamePrefixKey[];
41 extern const char kNameSuffixKey[];
42 extern const char kNameContainsKey[];
43 extern const char kNameEqualsKey[];
44 extern const char kValuePrefixKey[]; 47 extern const char kValuePrefixKey[];
45 extern const char kValueSuffixKey[]; 48 extern const char kValueSuffixKey[];
46 extern const char kValueContainsKey[];
47 extern const char kValueEqualsKey[];
48 49
49 // Values of dictionaries, in particular instance types 50 // Values of dictionaries, in particular instance types
50 extern const char kAddRequestCookieType[]; 51 extern const char kAddRequestCookieType[];
51 extern const char kAddResponseCookieType[]; 52 extern const char kAddResponseCookieType[];
52 extern const char kAddResponseHeaderType[]; 53 extern const char kAddResponseHeaderType[];
53 extern const char kCancelRequestType[]; 54 extern const char kCancelRequestType[];
54 extern const char kEditRequestCookieType[]; 55 extern const char kEditRequestCookieType[];
55 extern const char kEditResponseCookieType[]; 56 extern const char kEditResponseCookieType[];
56 extern const char kIgnoreRulesType[]; 57 extern const char kIgnoreRulesType[];
57 extern const char kRedirectByRegExType[]; 58 extern const char kRedirectByRegExType[];
58 extern const char kRedirectRequestType[]; 59 extern const char kRedirectRequestType[];
59 extern const char kRedirectToEmptyDocumentType[]; 60 extern const char kRedirectToEmptyDocumentType[];
60 extern const char kRedirectToTransparentImageType[]; 61 extern const char kRedirectToTransparentImageType[];
61 extern const char kRemoveRequestCookieType[]; 62 extern const char kRemoveRequestCookieType[];
62 extern const char kRemoveRequestHeaderType[]; 63 extern const char kRemoveRequestHeaderType[];
63 extern const char kRemoveResponseCookieType[]; 64 extern const char kRemoveResponseCookieType[];
64 extern const char kRemoveResponseHeaderType[]; 65 extern const char kRemoveResponseHeaderType[];
65 extern const char kRequestMatcherType[]; 66 extern const char kRequestMatcherType[];
66 extern const char kSetRequestHeaderType[]; 67 extern const char kSetRequestHeaderType[];
67 68
68 } // namespace declarative_webrequest_constants 69 } // namespace declarative_webrequest_constants
69 } // namespace extensions 70 } // namespace extensions
70 71
71 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST ANTS_H_ 72 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST ANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698