| 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_ |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 std::string extension_id_; | 265 std::string extension_id_; |
| 266 | 266 |
| 267 // Get the value of the cookie with the given name, associated with the given | 267 // Get the value of the cookie with the given name, associated with the given |
| 268 // URL. Returns S_FALSE if the cookie does not exist, and returns an error | 268 // URL. Returns S_FALSE if the cookie does not exist, and returns an error |
| 269 // code if something unexpected occurs. | 269 // code if something unexpected occurs. |
| 270 virtual HRESULT GetCookieValue(BSTR url, BSTR name, BSTR* value); | 270 virtual HRESULT GetCookieValue(BSTR url, BSTR name, BSTR* value); |
| 271 | 271 |
| 272 // Mainly for unit testing purposes. | 272 // Mainly for unit testing purposes. |
| 273 void set_cookie_store_is_registered(bool is_registered); | 273 void set_cookie_store_is_registered(bool is_registered); |
| 274 | 274 |
| 275 // Broker RPC client. | |
| 276 BrokerRpcClient broker_rpc_client_; | |
| 277 | |
| 278 // Instance of InfobarManager for the tab associated with the thread to which | 275 // Instance of InfobarManager for the tab associated with the thread to which |
| 279 // the executor is attached. | 276 // the executor is attached. |
| 280 scoped_ptr<infobar_api::InfobarManager> infobar_manager_; | 277 scoped_ptr<infobar_api::InfobarManager> infobar_manager_; |
| 281 }; | 278 }; |
| 282 | 279 |
| 283 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ | 280 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ |
| OLD | NEW |