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_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H_ | 7 #ifndef EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H_ |
8 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H_ | 8 #define EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H_ |
9 | 9 |
10 namespace extension_web_request_api_constants { | 10 namespace extension_web_request_api_constants { |
11 | 11 |
12 // Keys. | 12 // Keys. |
13 extern const char kChallengerKey[]; | 13 extern const char kChallengerKey[]; |
14 extern const char kErrorKey[]; | 14 extern const char kErrorKey[]; |
15 extern const char kFrameIdKey[]; | 15 extern const char kFrameIdKey[]; |
16 extern const char kParentFrameIdKey[]; | 16 extern const char kParentFrameIdKey[]; |
17 extern const char kFromCache[]; | 17 extern const char kFromCache[]; |
18 extern const char kHostKey[]; | 18 extern const char kHostKey[]; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 extern const char kInvalidRequestFilterUrl[]; | 78 extern const char kInvalidRequestFilterUrl[]; |
79 extern const char kBlockingPermissionRequired[]; | 79 extern const char kBlockingPermissionRequired[]; |
80 extern const char kHostPermissionsRequired[]; | 80 extern const char kHostPermissionsRequired[]; |
81 extern const char kInvalidHeaderKeyCombination[]; | 81 extern const char kInvalidHeaderKeyCombination[]; |
82 extern const char kInvalidHeader[]; | 82 extern const char kInvalidHeader[]; |
83 extern const char kInvalidHeaderName[]; | 83 extern const char kInvalidHeaderName[]; |
84 extern const char kInvalidHeaderValue[]; | 84 extern const char kInvalidHeaderValue[]; |
85 | 85 |
86 } // namespace extension_web_request_api_constants | 86 } // namespace extension_web_request_api_constants |
87 | 87 |
88 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H
_ | 88 #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_API_CONSTANTS_H_ |
OLD | NEW |