Index: ceee/ie/plugin/bho/cookie_accountant.h |
=================================================================== |
--- ceee/ie/plugin/bho/cookie_accountant.h (revision 68292) |
+++ ceee/ie/plugin/bho/cookie_accountant.h (working copy) |
@@ -54,11 +54,8 @@ |
// queue the events sent to the broker. They don't need to be sent to the BHO |
// because they don't need tab_id anyway. |
CookieAccountant() |
- : broker_rpc_client_(true), |
- cookie_events_funnel_(&broker_rpc_client_), |
+ : cookie_events_funnel_(new BrokerRpcClient(true)), |
patching_wininet_functions_(false) { |
- HRESULT hr = broker_rpc_client_.Connect(true); |
- DCHECK(SUCCEEDED(hr)); |
} |
virtual ~CookieAccountant(); |
@@ -113,9 +110,6 @@ |
// Sets the cookie store ID for a script cookie event. |
void SetScriptCookieStoreId(cookie_api::CookieInfo* cookie); |
- // Broker RPC client. |
- BrokerRpcClient broker_rpc_client_; |
- |
// The funnel for sending cookie events to the broker. |
CookieEventsFunnel cookie_events_funnel_; |