OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // IE browser helper object implementation. | 5 // IE browser helper object implementation. |
6 #ifndef CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ | 6 #ifndef CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ |
7 #define CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ | 7 #define CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlcom.h> | 10 #include <atlcom.h> |
11 #include <mshtml.h> // Needed for exdisp.h | 11 #include <mshtml.h> // Needed for exdisp.h |
12 #include <exdisp.h> | 12 #include <exdisp.h> |
13 #include <exdispid.h> | 13 #include <exdispid.h> |
14 #include <deque> | 14 #include <deque> |
15 #include <list> | 15 #include <list> |
16 #include <map> | 16 #include <map> |
17 #include <set> | 17 #include <set> |
18 #include <string> | 18 #include <string> |
19 #include <vector> | 19 #include <vector> |
20 | 20 |
21 #include "base/scoped_ptr.h" | 21 #include "base/scoped_ptr.h" |
22 #include "base/win/scoped_bstr.h" | 22 #include "base/win/scoped_bstr.h" |
23 #include "base/win/scoped_comptr.h" | 23 #include "base/win/scoped_comptr.h" |
24 #include "base/task.h" | 24 #include "base/task.h" |
25 #include "base/win/rgs_helper.h" | |
26 #include "ceee/ie/broker/broker_rpc_client.h" | 25 #include "ceee/ie/broker/broker_rpc_client.h" |
27 #include "ceee/ie/plugin/bho/tab_events_funnel.h" | 26 #include "ceee/ie/plugin/bho/tab_events_funnel.h" |
28 #include "ceee/ie/common/chrome_frame_host.h" | 27 #include "ceee/ie/common/chrome_frame_host.h" |
| 28 #include "ceee/ie/common/rgs_helper.h" |
29 #include "ceee/ie/plugin/bho/frame_event_handler.h" | 29 #include "ceee/ie/plugin/bho/frame_event_handler.h" |
30 #include "ceee/ie/plugin/bho/extension_port_manager.h" | 30 #include "ceee/ie/plugin/bho/extension_port_manager.h" |
31 #include "ceee/ie/plugin/bho/tool_band_visibility.h" | 31 #include "ceee/ie/plugin/bho/tool_band_visibility.h" |
32 #include "ceee/ie/plugin/bho/web_browser_events_source.h" | 32 #include "ceee/ie/plugin/bho/web_browser_events_source.h" |
33 #include "ceee/ie/plugin/bho/web_progress_notifier.h" | 33 #include "ceee/ie/plugin/bho/web_progress_notifier.h" |
34 #include "ceee/ie/plugin/scripting/userscripts_librarian.h" | 34 #include "ceee/ie/plugin/scripting/userscripts_librarian.h" |
35 #include "ceee/ie/plugin/scripting/content_script_native_api.h" | 35 #include "ceee/ie/plugin/scripting/content_script_native_api.h" |
36 #include "ceee/ie/plugin/toolband/resource.h" | 36 #include "ceee/ie/plugin/toolband/resource.h" |
37 | 37 |
38 #include "broker_lib.h" // NOLINT | 38 #include "broker_lib.h" // NOLINT |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 DeferredCallListType deferred_events_call_; | 460 DeferredCallListType deferred_events_call_; |
461 | 461 |
462 // This is passed to every funnel so they use the queue for sending events. | 462 // This is passed to every funnel so they use the queue for sending events. |
463 BrokerEventQueue broker_client_queue_; | 463 BrokerEventQueue broker_client_queue_; |
464 | 464 |
465 // Used to dispatch tab events back to Chrome. | 465 // Used to dispatch tab events back to Chrome. |
466 TabEventsFunnel tab_events_funnel_; | 466 TabEventsFunnel tab_events_funnel_; |
467 }; | 467 }; |
468 | 468 |
469 #endif // CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ | 469 #endif // CEEE_IE_PLUGIN_BHO_BROWSER_HELPER_OBJECT_H_ |
OLD | NEW |