Index: chrome/browser/browser_process_impl.cc |
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc |
index 43e90b2d5ad36a481927febdad406e22d62bcb0c..3a402247bffdbd58547c5b0d377dbd56d0fb4252 100644 |
--- a/chrome/browser/browser_process_impl.cc |
+++ b/chrome/browser/browser_process_impl.cc |
@@ -73,6 +73,7 @@ |
#include "content/browser/browser_thread.h" |
#include "content/browser/child_process_security_policy.h" |
#include "content/browser/gpu/gpu_process_host_ui_shim.h" |
+#include "content/browser/net/browser_online_state_observer.h" |
#include "content/browser/plugin_service.h" |
#include "content/browser/renderer_host/render_process_host.h" |
#include "content/browser/renderer_host/resource_dispatcher_host.h" |
@@ -151,6 +152,8 @@ BrowserProcessImpl::BrowserProcessImpl(const CommandLine& command_line) |
extension_event_router_forwarder_ = new ExtensionEventRouterForwarder; |
ExtensionTabIdMap::GetInstance()->Init(); |
+ |
+ online_state_observer_.reset(new BrowserOnlineStateObserver); |
} |
BrowserProcessImpl::~BrowserProcessImpl() { |