| 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 EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGISTRY_
H_ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGISTRY_
H_ |
| 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGISTRY_
H_ | 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGISTRY_
H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <memory> |
| 10 #include <set> | 11 #include <set> |
| 11 #include <string> | 12 #include <string> |
| 12 #include <vector> | 13 #include <vector> |
| 13 | 14 |
| 14 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 16 #include "base/macros.h" |
| 16 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
| 17 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 18 #include "base/memory/scoped_ptr.h" | |
| 19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
| 20 #include "components/url_matcher/url_matcher.h" | 20 #include "components/url_matcher/url_matcher.h" |
| 21 #include "extensions/browser/api/declarative/declarative_rule.h" | 21 #include "extensions/browser/api/declarative/declarative_rule.h" |
| 22 #include "extensions/browser/api/declarative/rules_registry.h" | 22 #include "extensions/browser/api/declarative/rules_registry.h" |
| 23 #include "extensions/browser/api/declarative_webrequest/request_stage.h" | 23 #include "extensions/browser/api/declarative_webrequest/request_stage.h" |
| 24 #include "extensions/browser/api/declarative_webrequest/webrequest_action.h" | 24 #include "extensions/browser/api/declarative_webrequest/webrequest_action.h" |
| 25 #include "extensions/browser/api/declarative_webrequest/webrequest_condition.h" | 25 #include "extensions/browser/api/declarative_webrequest/webrequest_condition.h" |
| 26 #include "extensions/browser/info_map.h" | 26 #include "extensions/browser/info_map.h" |
| 27 | 27 |
| 28 class WebRequestPermissions; | 28 class WebRequestPermissions; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 content::BrowserContext* browser_context_; | 189 content::BrowserContext* browser_context_; |
| 190 scoped_refptr<InfoMap> extension_info_map_; | 190 scoped_refptr<InfoMap> extension_info_map_; |
| 191 | 191 |
| 192 DISALLOW_COPY_AND_ASSIGN(WebRequestRulesRegistry); | 192 DISALLOW_COPY_AND_ASSIGN(WebRequestRulesRegistry); |
| 193 }; | 193 }; |
| 194 | 194 |
| 195 } // namespace extensions | 195 } // namespace extensions |
| 196 | 196 |
| 197 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGIST
RY_H_ | 197 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES_REGIST
RY_H_ |
| OLD | NEW |