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

Side by Side Diff: chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc

Issue 11414230: Declarative Web Request: firstPartyForCookiesUrl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added event order Created 8 years 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 | Annotate | Revision Log
OLDNEW
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 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_consta nts.h" 5 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_consta nts.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 namespace declarative_webrequest_constants { 8 namespace declarative_webrequest_constants {
9 9
10 // Signals to which WebRequestRulesRegistries are registered. 10 // Signals to which WebRequestRulesRegistries are registered.
11 const char kOnRequest[] = "declarativeWebRequest.onRequest"; 11 const char kOnRequest[] = "declarativeWebRequest.onRequest";
12 12
13 // Keys of dictionaries. 13 // Keys of dictionaries.
14 const char kAgeLowerBoundKey[] = "ageLowerBound"; 14 const char kAgeLowerBoundKey[] = "ageLowerBound";
15 const char kAgeUpperBoundKey[] = "ageUpperBound"; 15 const char kAgeUpperBoundKey[] = "ageUpperBound";
16 const char kCookieKey[] = "cookie"; 16 const char kCookieKey[] = "cookie";
17 const char kContentTypeKey[] = "contentType"; 17 const char kContentTypeKey[] = "contentType";
18 const char kDomainKey[] = "domain"; 18 const char kDomainKey[] = "domain";
19 const char kExcludeContentTypeKey[] = "excludeContentType"; 19 const char kExcludeContentTypeKey[] = "excludeContentType";
20 const char kExcludeRequestHeadersKey[] = "excludeRequestHeaders"; 20 const char kExcludeRequestHeadersKey[] = "excludeRequestHeaders";
21 const char kExcludeResponseHeadersKey[] = "excludeResponseHeaders"; 21 const char kExcludeResponseHeadersKey[] = "excludeResponseHeaders";
22 const char kExpiresKey[] = "expires"; 22 const char kExpiresKey[] = "expires";
23 const char kFilterKey[] ="filter"; 23 const char kFilterKey[] ="filter";
24 const char kFirstPartyForCookiesUrlKey[] = "firstPartyForCookiesUrl";
24 const char kFromKey[] = "from"; 25 const char kFromKey[] = "from";
25 const char kHttpOnlyKey[] = "httpOnly"; 26 const char kHttpOnlyKey[] = "httpOnly";
26 const char kInstanceTypeKey[] = "instanceType"; 27 const char kInstanceTypeKey[] = "instanceType";
27 const char kLowerPriorityThanKey[] = "lowerPriorityThan"; 28 const char kLowerPriorityThanKey[] = "lowerPriorityThan";
28 const char kMaxAgeKey[] = "maxAge"; 29 const char kMaxAgeKey[] = "maxAge";
29 const char kModificationKey[] = "modification"; 30 const char kModificationKey[] = "modification";
30 const char kNameContainsKey[] = "nameContains"; 31 const char kNameContainsKey[] = "nameContains";
31 const char kNameEqualsKey[] = "nameEquals"; 32 const char kNameEqualsKey[] = "nameEquals";
32 const char kNameKey[] = "name"; 33 const char kNameKey[] = "name";
33 const char kNamePrefixKey[] = "namePrefix"; 34 const char kNamePrefixKey[] = "namePrefix";
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "declarativeWebRequest.RemoveRequestHeader"; 78 "declarativeWebRequest.RemoveRequestHeader";
78 const char kRemoveResponseCookieType[] = 79 const char kRemoveResponseCookieType[] =
79 "declarativeWebRequest.RemoveResponseCookie"; 80 "declarativeWebRequest.RemoveResponseCookie";
80 const char kRemoveResponseHeaderType[] = 81 const char kRemoveResponseHeaderType[] =
81 "declarativeWebRequest.RemoveResponseHeader"; 82 "declarativeWebRequest.RemoveResponseHeader";
82 const char kRequestMatcherType[] = "declarativeWebRequest.RequestMatcher"; 83 const char kRequestMatcherType[] = "declarativeWebRequest.RequestMatcher";
83 const char kSetRequestHeaderType[] = "declarativeWebRequest.SetRequestHeader"; 84 const char kSetRequestHeaderType[] = "declarativeWebRequest.SetRequestHeader";
84 85
85 } // namespace declarative_webrequest_constants 86 } // namespace declarative_webrequest_constants
86 } // namespace extensions 87 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698