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 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <map> | 9 #include <map> |
11 #include <set> | 10 #include <set> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/time.h" | 13 #include "base/time.h" |
15 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
16 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
17 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" | 16 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 RulesMap webrequest_rules_; | 109 RulesMap webrequest_rules_; |
111 | 110 |
112 URLMatcher url_matcher_; | 111 URLMatcher url_matcher_; |
113 | 112 |
114 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 113 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
115 }; | 114 }; |
116 | 115 |
117 } // namespace extensions | 116 } // namespace extensions |
118 | 117 |
119 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES
_REGISTRY_H_ | 118 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_RULES
_REGISTRY_H_ |
OLD | NEW |