Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: chrome/browser/extensions/activity_log/web_request_constants.h

Issue 589153002: Remove void* in WebRequestEventRouterDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
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_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_
9 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_
10
11 namespace activity_log_web_request_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 activity_log_web_request_constants
35
36 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_WEB_REQUEST_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698