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

Side by Side Diff: chrome/browser/extensions/api/declarative_webrequest/webrequest_constants.h

Issue 10843065: Add condition attribute for MIME media types from Content-Type header. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: dammit docs 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Constants used for the WebRequest API. 5 // Constants used for the WebRequest API.
6 6
7 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_ 7 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_
8 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_ 8 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONSTANT S_H_
9 9
10 namespace extensions { 10 namespace extensions {
11 namespace declarative_webrequest_constants { 11 namespace declarative_webrequest_constants {
12 12
13 // Signals to which WebRequestRulesRegistries are registered. 13 // Signals to which WebRequestRulesRegistries are registered.
14 extern const char kOnRequest[]; 14 extern const char kOnRequest[];
15 15
16 // Keys of dictionaries. 16 // Keys of dictionaries.
17 extern const char kCookieKey[]; 17 extern const char kCookieKey[];
18 extern const char kContentTypeKey[];
18 extern const char kDirectionKey[]; 19 extern const char kDirectionKey[];
19 extern const char kDomainKey[]; 20 extern const char kDomainKey[];
20 extern const char kExpiresKey[]; 21 extern const char kExpiresKey[];
21 extern const char kFilterKey[]; 22 extern const char kFilterKey[];
22 extern const char kFromKey[]; 23 extern const char kFromKey[];
23 extern const char kHttpOnlyKey[]; 24 extern const char kHttpOnlyKey[];
24 extern const char kInstanceTypeKey[]; 25 extern const char kInstanceTypeKey[];
25 extern const char kLowerPriorityThanKey[]; 26 extern const char kLowerPriorityThanKey[];
26 extern const char kMaxAgeKey[]; 27 extern const char kMaxAgeKey[];
27 extern const char kModificationKey[]; 28 extern const char kModificationKey[];
(...skipping 22 matching lines...) Expand all
50 extern const char kRemoveRequestHeaderType[]; 51 extern const char kRemoveRequestHeaderType[];
51 extern const char kRemoveResponseCookieType[]; 52 extern const char kRemoveResponseCookieType[];
52 extern const char kRemoveResponseHeaderType[]; 53 extern const char kRemoveResponseHeaderType[];
53 extern const char kRequestMatcherType[]; 54 extern const char kRequestMatcherType[];
54 extern const char kSetRequestHeaderType[]; 55 extern const char kSetRequestHeaderType[];
55 56
56 } // namespace declarative_webrequest_constants 57 } // namespace declarative_webrequest_constants
57 } // namespace extensions 58 } // namespace extensions
58 59
59 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST ANTS_H_ 60 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONST ANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698