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

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

Issue 10447090: Support Cookie modifications in Declarative WebRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 8 years, 4 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.h
diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h
index 57461cff855fe6e8a8d35e571376542d932655fa..4dc194299c33dc60cafd995fad5275baf0c71838 100644
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h
@@ -14,25 +14,41 @@ namespace declarative_webrequest_constants {
extern const char kOnRequest[];
// Keys of dictionaries.
+extern const char kCookieKey[];
+extern const char kDirectionKey[];
+extern const char kDomainKey[];
+extern const char kExpiresKey[];
+extern const char kFilterKey[];
extern const char kFromKey[];
+extern const char kHttpOnlyKey[];
extern const char kInstanceTypeKey[];
extern const char kLowerPriorityThanKey[];
+extern const char kMaxAgeKey[];
+extern const char kModificationKey[];
extern const char kNameKey[];
+extern const char kPathKey[];
extern const char kRedirectUrlKey[];
extern const char kResourceTypeKey[];
+extern const char kSecureKey[];
extern const char kToKey[];
extern const char kUrlKey[];
extern const char kValueKey[];
// Values of dictionaries, in particular instance types
+extern const char kAddRequestCookieType[];
+extern const char kAddResponseCookieType[];
extern const char kAddResponseHeaderType[];
extern const char kCancelRequestType[];
+extern const char kEditRequestCookieType[];
+extern const char kEditResponseCookieType[];
extern const char kIgnoreRulesType[];
extern const char kRedirectByRegExType[];
extern const char kRedirectRequestType[];
extern const char kRedirectToEmptyDocumentType[];
extern const char kRedirectToTransparentImageType[];
+extern const char kRemoveRequestCookieType[];
extern const char kRemoveRequestHeaderType[];
+extern const char kRemoveResponseCookieType[];
extern const char kRemoveResponseHeaderType[];
extern const char kRequestMatcherType[];
extern const char kSetRequestHeaderType[];

Powered by Google App Engine
This is Rietveld 408576698