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

Unified Diff: chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc

Issue 10982044: Adding thirdParty property to RequestMatcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reordered the unit-test to spare setting up some URLs. Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
index 1a6654c0987b867801064384942abd359efaf623..c1560f0844ab5ed6d967d17347c8b1ee046abe7a 100644
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
@@ -18,6 +18,7 @@ const char kContentTypeKey[] = "contentType";
const char kDirectionKey[] = "direction";
const char kDomainKey[] = "domain";
const char kExcludeContentTypeKey[] = "excludeContentType";
+const char kExcludeResponseHeadersKey[] = "excludeResponseHeaders";
const char kExpiresKey[] = "expires";
const char kFilterKey[] ="filter";
const char kFromKey[] = "from";
@@ -26,25 +27,25 @@ const char kInstanceTypeKey[] = "instanceType";
const char kLowerPriorityThanKey[] = "lowerPriorityThan";
const char kMaxAgeKey[] = "maxAge";
const char kModificationKey[] = "modification";
+const char kNameContainsKey[] = "nameContains";
+const char kNameEqualsKey[] = "nameEquals";
const char kNameKey[] = "name";
+const char kNamePrefixKey[] = "namePrefix";
+const char kNameSuffixKey[] = "nameSuffix";
const char kPathKey[] = "path";
const char kRedirectUrlKey[] = "redirectUrl";
const char kResourceTypeKey[] = "resourceType";
+const char kResponseHeadersKey[] = "responseHeaders";
const char kSecureKey[] = "secure";
+const char kSessionCookieKey[] = "sessionCookie";
+const char kThirdPartyKey[] = "thirdPartyForCookies";
const char kToKey[] = "to";
const char kUrlKey[] = "url";
+const char kValueContainsKey[] = "valueContains";
+const char kValueEqualsKey[] = "valueEquals";
const char kValueKey[] = "value";
-const char kResponseHeadersKey[] = "responseHeaders";
-const char kExcludeResponseHeadersKey[] = "excludeResponseHeaders";
-const char kNamePrefixKey[] = "namePrefix";
-const char kNameSuffixKey[] = "nameSuffix";
-const char kNameContainsKey[] = "nameContains";
-const char kNameEqualsKey[] = "nameEquals";
-const char kSessionCookieKey[] = "sessionCookie";
const char kValuePrefixKey[] = "valuePrefix";
const char kValueSuffixKey[] = "valueSuffix";
-const char kValueContainsKey[] = "valueContains";
-const char kValueEqualsKey[] = "valueEquals";
// Values of dictionaries, in particular instance types
const char kAddRequestCookieType[] = "declarativeWebRequest.AddRequestCookie";

Powered by Google App Engine
This is Rietveld 408576698