| 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 EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT
S_H_ | 8 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANTS_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 or listeners can | 13 // Signals to which WebRequestRulesRegistries are registered or listeners can |
| 14 // be registered. | 14 // be registered. |
| 15 extern const char kOnRequest[]; | 15 extern const char kOnRequest[]; |
| 16 extern const char kOnMessage[]; | 16 extern const char kOnMessage[]; |
| 17 | 17 |
| 18 // Keys of dictionaries. | 18 // Keys of dictionaries. |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 extern const char kRemoveRequestHeaderType[]; | 79 extern const char kRemoveRequestHeaderType[]; |
| 80 extern const char kRemoveResponseCookieType[]; | 80 extern const char kRemoveResponseCookieType[]; |
| 81 extern const char kRemoveResponseHeaderType[]; | 81 extern const char kRemoveResponseHeaderType[]; |
| 82 extern const char kRequestMatcherType[]; | 82 extern const char kRequestMatcherType[]; |
| 83 extern const char kSendMessageToExtensionType[]; | 83 extern const char kSendMessageToExtensionType[]; |
| 84 extern const char kSetRequestHeaderType[]; | 84 extern const char kSetRequestHeaderType[]; |
| 85 | 85 |
| 86 } // namespace declarative_webrequest_constants | 86 } // namespace declarative_webrequest_constants |
| 87 } // namespace extensions | 87 } // namespace extensions |
| 88 | 88 |
| 89 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST
ANTS_H_ | 89 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANTS_H_ |
| OLD | NEW |