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_CONTENT_CONTENT_RULES_REGISTRY
_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_CONTENT_RULES_REGISTRY
_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_CONTENT_RULES_REGISTRY
_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_CONTENT_RULES_REGISTRY
_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/extensions/api/declarative/declarative_rule.h" | 16 #include "chrome/browser/extensions/api/declarative/declarative_rule.h" |
17 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" | 17 #include "chrome/browser/extensions/api/declarative/rules_registry_with_cache.h" |
18 #include "chrome/browser/extensions/api/declarative_content/content_action.h" | 18 #include "chrome/browser/extensions/api/declarative_content/content_action.h" |
19 #include "chrome/browser/extensions/api/declarative_content/content_condition.h" | 19 #include "chrome/browser/extensions/api/declarative_content/content_condition.h" |
20 #include "chrome/browser/extensions/extension_info_map.h" | 20 #include "chrome/browser/extensions/extension_info_map.h" |
21 #include "chrome/common/extensions/matcher/url_matcher.h" | |
22 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
23 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 23 #include "extensions/common/matcher/url_matcher.h" |
24 | 24 |
25 class Profile; | 25 class Profile; |
26 class ContentPermissions; | 26 class ContentPermissions; |
27 | 27 |
28 namespace content { | 28 namespace content { |
29 class RenderProcessHost; | 29 class RenderProcessHost; |
30 class WebContents; | 30 class WebContents; |
31 struct FrameNavigateParams; | 31 struct FrameNavigateParams; |
32 struct LoadCommittedDetails; | 32 struct LoadCommittedDetails; |
33 } | 33 } |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 // Manages our notification registrations. | 137 // Manages our notification registrations. |
138 content::NotificationRegistrar registrar_; | 138 content::NotificationRegistrar registrar_; |
139 | 139 |
140 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 140 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
141 }; | 141 }; |
142 | 142 |
143 } // namespace extensions | 143 } // namespace extensions |
144 | 144 |
145 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_CONTENT_RULES_REGIS
TRY_H_ | 145 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_CONTENT_RULES_REGIS
TRY_H_ |
OLD | NEW |