OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 when describing request modifications via the WebRequest API | 5 // Constants used when describing request modifications via the WebRequest API |
6 // in the activity log. | 6 // in the activity log. |
7 | 7 |
8 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ | 8 #ifndef EXTENSIONS_BROWSER_API_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ |
9 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ | 9 #define EXTENSIONS_BROWSER_API_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ |
10 | 10 |
11 namespace activity_log_web_request_constants { | 11 namespace activity_log_web_request_constants { |
12 | 12 |
13 // Keys used in the dictionary summarizing an EventResponseDelta for the | 13 // Keys used in the dictionary summarizing an EventResponseDelta for the |
14 // extension activity log. | 14 // extension activity log. |
15 extern const char kCancelKey[]; | 15 extern const char kCancelKey[]; |
16 extern const char kNewUrlKey[]; | 16 extern const char kNewUrlKey[]; |
17 extern const char kModifiedRequestHeadersKey[]; | 17 extern const char kModifiedRequestHeadersKey[]; |
18 extern const char kDeletedRequestHeadersKey[]; | 18 extern const char kDeletedRequestHeadersKey[]; |
19 extern const char kAddedRequestHeadersKey[]; | 19 extern const char kAddedRequestHeadersKey[]; |
20 extern const char kDeletedResponseHeadersKey[]; | 20 extern const char kDeletedResponseHeadersKey[]; |
21 extern const char kAuthCredentialsKey[]; | 21 extern const char kAuthCredentialsKey[]; |
22 extern const char kResponseCookieModificationsKey[]; | 22 extern const char kResponseCookieModificationsKey[]; |
23 | 23 |
24 // Keys and values used for describing cookie modifications. | 24 // Keys and values used for describing cookie modifications. |
25 extern const char kCookieModificationTypeKey[]; | 25 extern const char kCookieModificationTypeKey[]; |
26 extern const char kCookieModificationAdd[]; | 26 extern const char kCookieModificationAdd[]; |
27 extern const char kCookieModificationEdit[]; | 27 extern const char kCookieModificationEdit[]; |
28 extern const char kCookieModificationRemove[]; | 28 extern const char kCookieModificationRemove[]; |
29 extern const char kCookieFilterNameKey[]; | 29 extern const char kCookieFilterNameKey[]; |
30 extern const char kCookieFilterDomainKey[]; | 30 extern const char kCookieFilterDomainKey[]; |
31 extern const char kCookieModNameKey[]; | 31 extern const char kCookieModNameKey[]; |
32 extern const char kCookieModDomainKey[]; | 32 extern const char kCookieModDomainKey[]; |
33 | 33 |
34 } // namespace activity_log_web_request_constants | 34 } // namespace activity_log_web_request_constants |
35 | 35 |
36 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ | 36 #endif // EXTENSIONS_BROWSER_API_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_ |
OLD | NEW |