OLD | NEW |
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 #pragma once | |
10 | 9 |
11 namespace extensions { | 10 namespace extensions { |
12 namespace declarative_webrequest_constants { | 11 namespace declarative_webrequest_constants { |
13 | 12 |
14 // Signals to which WebRequestRulesRegistries are registered. | 13 // Signals to which WebRequestRulesRegistries are registered. |
15 extern const char kOnRequest[]; | 14 extern const char kOnRequest[]; |
16 | 15 |
17 // Keys of dictionaries. | 16 // Keys of dictionaries. |
18 extern const char kFromKey[]; | 17 extern const char kFromKey[]; |
19 extern const char kInstanceTypeKey[]; | 18 extern const char kInstanceTypeKey[]; |
(...skipping 15 matching lines...) Expand all Loading... |
35 extern const char kRedirectToTransparentImageType[]; | 34 extern const char kRedirectToTransparentImageType[]; |
36 extern const char kRemoveRequestHeaderType[]; | 35 extern const char kRemoveRequestHeaderType[]; |
37 extern const char kRemoveResponseHeaderType[]; | 36 extern const char kRemoveResponseHeaderType[]; |
38 extern const char kRequestMatcherType[]; | 37 extern const char kRequestMatcherType[]; |
39 extern const char kSetRequestHeaderType[]; | 38 extern const char kSetRequestHeaderType[]; |
40 | 39 |
41 } // namespace declarative_webrequest_constants | 40 } // namespace declarative_webrequest_constants |
42 } // namespace extensions | 41 } // namespace extensions |
43 | 42 |
44 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST
ANTS_H_ | 43 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST
ANTS_H_ |
OLD | NEW |