OLD | NEW |
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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_RE
GISTRY_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_RE
GISTRY_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_RE
GISTRY_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_RE
GISTRY_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
17 #include "chrome/browser/extensions/api/declarative/declarative_rule.h" | 17 #include "chrome/browser/extensions/api/declarative/declarative_rule.h" |
18 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" | 18 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" |
19 #include "chrome/browser/extensions/api/declarative_webrequest/request_stage.h" | 19 #include "chrome/browser/extensions/api/declarative_webrequest/request_stage.h" |
20 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_action
.h" | 20 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_action
.h" |
21 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_condit
ion.h" | 21 #include "chrome/browser/extensions/api/declarative_webrequest/webrequest_condit
ion.h" |
22 #include "chrome/browser/extensions/extension_info_map.h" | 22 #include "chrome/browser/extensions/extension_info_map.h" |
23 #include "chrome/common/extensions/matcher/url_matcher.h" | 23 #include "extensions/common/matcher/url_matcher.h" |
24 | 24 |
25 class Profile; | 25 class Profile; |
26 class WebRequestPermissions; | 26 class WebRequestPermissions; |
27 | 27 |
28 namespace extension_web_request_api_helpers { | 28 namespace extension_web_request_api_helpers { |
29 struct EventResponseDelta; | 29 struct EventResponseDelta; |
30 } | 30 } |
31 | 31 |
32 namespace net { | 32 namespace net { |
33 class URLRequest; | 33 class URLRequest; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 RulesMap webrequest_rules_; | 146 RulesMap webrequest_rules_; |
147 | 147 |
148 URLMatcher url_matcher_; | 148 URLMatcher url_matcher_; |
149 | 149 |
150 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 150 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
151 }; | 151 }; |
152 | 152 |
153 } // namespace extensions | 153 } // namespace extensions |
154 | 154 |
155 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES
_REGISTRY_H_ | 155 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES
_REGISTRY_H_ |
OLD | NEW |