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

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

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 #include "chrome/browser/extensions/activity_log/web_request_constants.h"
9
10 namespace activity_log_web_request_constants {
11
12 // Keys used in the dictionary summarizing an EventResponseDelta for the
13 // extension activity log.
14 const char kCancelKey[] = "cancel";
15 const char kNewUrlKey[] = "new_url";
16 const char kModifiedRequestHeadersKey[] = "modified_request_headers";
17 const char kDeletedRequestHeadersKey[] = "deleted_request_headers";
18 const char kAddedRequestHeadersKey[] = "added_request_headers";
19 const char kDeletedResponseHeadersKey[] = "deleted_response_headers";
20 const char kAuthCredentialsKey[] = "auth_credentials";
21 const char kResponseCookieModificationsKey[] = "response_cookie_modifications";
22
23 // Keys and values used for describing cookie modifications.
24 const char kCookieModificationTypeKey[] = "type";
25 const char kCookieModificationAdd[] = "ADD";
26 const char kCookieModificationEdit[] = "EDIT";
27 const char kCookieModificationRemove[] = "REMOVE";
28 const char kCookieFilterNameKey[] = "filter_name";
29 const char kCookieFilterDomainKey[] = "filter_domain";
30 const char kCookieModNameKey[] = "mod_name";
31 const char kCookieModDomainKey[] = "mod_domain";
32
33 } // namespace activity_log_web_request_constants
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698