Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(725)

Side by Side Diff: ceee/ie/plugin/bho/executor.h

Issue 5544010: Revert 68293 - Revert 68290 - Restored missing BrokerRpcClient::Connect.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ceee/ie/plugin/bho/cookie_accountant.h ('k') | ceee/ie/plugin/bho/executor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
275 // 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
276 // the executor is attached. 279 // the executor is attached.
277 scoped_ptr<infobar_api::InfobarManager> infobar_manager_; 280 scoped_ptr<infobar_api::InfobarManager> infobar_manager_;
278 }; 281 };
279 282
280 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_ 283 #endif // CEEE_IE_PLUGIN_BHO_EXECUTOR_H_
OLDNEW
« no previous file with comments | « ceee/ie/plugin/bho/cookie_accountant.h ('k') | ceee/ie/plugin/bho/executor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698