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

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: Split some parts into separate CLs Created 8 years, 6 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 d3b3ffc17979e862d8e03294c17340d95822dd4a..d68b7a606814753fc5dcf1ec5e5ab16d94b9a708 100644
--- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h
+++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h
@@ -15,25 +15,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