Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
Matt Perry
2013/04/12 19:09:18
Sorry to be a pain, but I think these files actual
mvrable
2013/04/12 19:54:21
I relocated these files an updated the patch. I'm
Matt Perry
2013/04/12 19:55:55
Yep, sounds good. Thanks!
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Constants used when describing request modifications via the WebRequest API | |
| 6 // in the activity log. | |
| 7 | |
| 8 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_ACTIVITYLOG_CONSTA NTS_H_ | |
| 9 #define CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_ACTIVITYLOG_CONSTA NTS_H_ | |
| 10 | |
| 11 namespace extension_web_request_activitylog_constants { | |
| 12 | |
| 13 // Keys used in the dictionary summarizing an EventResponseDelta for the | |
| 14 // extension activity log. | |
| 15 extern const char kCancelKey[]; | |
| 16 extern const char kNewUrlKey[]; | |
| 17 extern const char kModifiedRequestHeadersKey[]; | |
| 18 extern const char kDeletedRequestHeadersKey[]; | |
| 19 extern const char kAddedRequestHeadersKey[]; | |
| 20 extern const char kDeletedResponseHeadersKey[]; | |
| 21 extern const char kAuthCredentialsKey[]; | |
| 22 extern const char kResponseCookieModificationsKey[]; | |
| 23 | |
| 24 // Keys and values used for describing cookie modifications. | |
| 25 extern const char kCookieModificationTypeKey[]; | |
| 26 extern const char kCookieModificationAdd[]; | |
| 27 extern const char kCookieModificationEdit[]; | |
| 28 extern const char kCookieModificationRemove[]; | |
| 29 extern const char kCookieFilterNameKey[]; | |
| 30 extern const char kCookieFilterDomainKey[]; | |
| 31 extern const char kCookieModNameKey[]; | |
| 32 extern const char kCookieModDomainKey[]; | |
| 33 | |
| 34 } // namespace extension_web_request_activitylog_constants | |
| 35 | |
| 36 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_REQUEST_WEB_REQUEST_ACTIVITYLOG_CON STANTS_H_ | |
| OLD | NEW |