diff options
Diffstat (limited to 'content/browser/browser_main_loop.cc')
-rw-r--r-- | content/browser/browser_main_loop.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc index 3007157..635c203 100644 --- a/content/browser/browser_main_loop.cc +++ b/content/browser/browser_main_loop.cc @@ -321,8 +321,11 @@ void BrowserMainLoop::MainMessageLoopStart() { system_monitor_.reset(new base::SystemMonitor); hi_res_timer_manager_.reset(new HighResolutionTimerManager); - +#if !defined(OS_ANDROID) + // TODO(michaelbai): The Android content shell was stuck here, disabled it + // temporarily. network_change_notifier_.reset(net::NetworkChangeNotifier::Create()); +#endif audio_manager_.reset(media::AudioManager::Create()); online_state_observer_.reset(new BrowserOnlineStateObserver); |