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 // @file | 5 // @file |
6 // CeeeExecutor & CeeeExecutorCreator implementation, interfaces to | 6 // CeeeExecutor & CeeeExecutorCreator implementation, interfaces to |
7 // execute code in other threads which can be running in other another process. | 7 // execute code in other threads which can be running in other another process. |
8 | 8 |
9 #ifndef CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ | 9 #ifndef CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ |
10 #define CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ | 10 #define CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ |
11 | 11 |
12 #include <atlbase.h> | 12 #include <atlbase.h> |
13 #include <atlcom.h> | 13 #include <atlcom.h> |
14 #include <string.h> | 14 #include <string.h> |
15 | 15 |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "base/task.h" | 17 #include "base/task.h" |
18 #include "base/win/rgs_helper.h" | 18 #include "ceee/ie/common/rgs_helper.h" |
19 #include "ceee/ie/plugin/bho/infobar_manager.h" | 19 #include "ceee/ie/plugin/bho/infobar_manager.h" |
20 #include "ceee/ie/plugin/toolband/resource.h" | 20 #include "ceee/ie/plugin/toolband/resource.h" |
21 | 21 |
22 #include "toolband.h" // NOLINT | 22 #include "toolband.h" // NOLINT |
23 | 23 |
24 struct IWebBrowser2; | 24 struct IWebBrowser2; |
25 namespace infobar_api { | 25 namespace infobar_api { |
26 class InfobarManager; | 26 class InfobarManager; |
27 }; | 27 }; |
28 | 28 |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 274 |
275 // Broker RPC client. | 275 // Broker RPC client. |
276 BrokerRpcClient broker_rpc_client_; | 276 BrokerRpcClient broker_rpc_client_; |
277 | 277 |
278 // Instance of InfobarManager for the tab associated with the thread to which | 278 // Instance of InfobarManager for the tab associated with the thread to which |
279 // the executor is attached. | 279 // the executor is attached. |
280 scoped_ptr<infobar_api::InfobarManager> infobar_manager_; | 280 scoped_ptr<infobar_api::InfobarManager> infobar_manager_; |
281 }; | 281 }; |
282 | 282 |
283 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ | 283 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ |
OLD | NEW |