| 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[];
|
|
|