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_RENDERER_EXTENSIONS_DISPATCHER_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/shared_memory.h" | 12 #include "base/shared_memory.h" |
13 #include "base/timer.h" | 13 #include "base/timer.h" |
14 #include "content/public/renderer/render_process_observer.h" | 14 #include "content/public/renderer/render_process_observer.h" |
15 #include "chrome/common/extensions/event_filter.h" | |
16 #include "chrome/common/extensions/extension_set.h" | 15 #include "chrome/common/extensions/extension_set.h" |
17 #include "chrome/common/extensions/features/feature.h" | 16 #include "chrome/common/extensions/features/feature.h" |
18 #include "chrome/renderer/extensions/chrome_v8_context.h" | 17 #include "chrome/renderer/extensions/chrome_v8_context.h" |
19 #include "chrome/renderer/extensions/chrome_v8_context_set.h" | 18 #include "chrome/renderer/extensions/chrome_v8_context_set.h" |
20 #include "chrome/renderer/extensions/v8_schema_registry.h" | 19 #include "chrome/renderer/extensions/v8_schema_registry.h" |
21 #include "chrome/renderer/resource_bundle_source_map.h" | 20 #include "chrome/renderer/resource_bundle_source_map.h" |
| 21 #include "extensions/common/event_filter.h" |
22 #include "v8/include/v8.h" | 22 #include "v8/include/v8.h" |
23 | 23 |
24 class GURL; | 24 class GURL; |
25 class ModuleSystem; | 25 class ModuleSystem; |
26 class URLPattern; | 26 class URLPattern; |
27 struct ExtensionMsg_Loaded_Params; | 27 struct ExtensionMsg_Loaded_Params; |
28 | 28 |
29 namespace WebKit { | 29 namespace WebKit { |
30 class WebFrame; | 30 class WebFrame; |
31 } | 31 } |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 // Sends API requests to the extension host. | 258 // Sends API requests to the extension host. |
259 scoped_ptr<RequestSender> request_sender_; | 259 scoped_ptr<RequestSender> request_sender_; |
260 | 260 |
261 DISALLOW_COPY_AND_ASSIGN(Dispatcher); | 261 DISALLOW_COPY_AND_ASSIGN(Dispatcher); |
262 }; | 262 }; |
263 | 263 |
264 } // namespace extensions | 264 } // namespace extensions |
265 | 265 |
266 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ | 266 #endif // CHROME_RENDERER_EXTENSIONS_DISPATCHER_H_ |
OLD | NEW |