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

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: Created 8 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 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 c204807289adfdab391e7cf6fb9cad780be4497f..3c775d55d1ca74018ff98fdac7e29dda39cc7220 100644
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.cc
@@ -16,6 +16,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";
@@ -24,24 +25,24 @@ 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 kThirdPartyKey[] = "thirdParty";
vabr (Chromium) 2012/09/26 15:44:46 This is the only added key, others are just re-ord
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 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