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

Side by Side Diff: chrome/browser/browser_process_impl.cc

Issue 2818533003: Make nesting/running states a RunLoop rather than a MessageLoop concept. (Closed)
Patch Set: still need to check MessageLoop::current() in Mojo's RunLoopNestingObserver::GetForThread() Created 3 years, 7 months 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/browser_process_impl.h" 5 #include "chrome/browser/browser_process_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <map> 10 #include <map>
11 #include <utility> 11 #include <utility>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/atomic_ref_count.h" 14 #include "base/atomic_ref_count.h"
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/bind_helpers.h" 16 #include "base/bind_helpers.h"
17 #include "base/command_line.h" 17 #include "base/command_line.h"
18 #include "base/debug/crash_logging.h" 18 #include "base/debug/crash_logging.h"
19 #include "base/debug/leak_annotations.h" 19 #include "base/debug/leak_annotations.h"
20 #include "base/files/file_path.h" 20 #include "base/files/file_path.h"
21 #include "base/location.h" 21 #include "base/location.h"
22 #include "base/macros.h" 22 #include "base/macros.h"
23 #include "base/memory/ptr_util.h" 23 #include "base/memory/ptr_util.h"
24 #include "base/metrics/histogram_macros.h" 24 #include "base/metrics/histogram_macros.h"
25 #include "base/path_service.h" 25 #include "base/path_service.h"
26 #include "base/run_loop.h"
26 #include "base/single_thread_task_runner.h" 27 #include "base/single_thread_task_runner.h"
27 #include "base/synchronization/waitable_event.h" 28 #include "base/synchronization/waitable_event.h"
28 #include "base/threading/sequenced_worker_pool.h" 29 #include "base/threading/sequenced_worker_pool.h"
29 #include "base/threading/thread.h" 30 #include "base/threading/thread.h"
30 #include "base/threading/thread_restrictions.h" 31 #include "base/threading/thread_restrictions.h"
31 #include "base/threading/thread_task_runner_handle.h" 32 #include "base/threading/thread_task_runner_handle.h"
32 #include "base/time/default_clock.h" 33 #include "base/time/default_clock.h"
33 #include "base/time/default_tick_clock.h" 34 #include "base/time/default_tick_clock.h"
34 #include "base/trace_event/trace_event.h" 35 #include "base/trace_event/trace_event.h"
35 #include "build/build_config.h" 36 #include "build/build_config.h"
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1349 #endif 1350 #endif
1350 1351
1351 #if defined(LEAK_SANITIZER) 1352 #if defined(LEAK_SANITIZER)
1352 // Check for memory leaks now, before we start shutting down threads. Doing 1353 // Check for memory leaks now, before we start shutting down threads. Doing
1353 // this early means we won't report any shutdown-only leaks (as they have 1354 // this early means we won't report any shutdown-only leaks (as they have
1354 // not yet happened at this point). 1355 // not yet happened at this point).
1355 // If leaks are found, this will make the process exit immediately. 1356 // If leaks are found, this will make the process exit immediately.
1356 __lsan_do_leak_check(); 1357 __lsan_do_leak_check();
1357 #endif 1358 #endif
1358 1359
1359 CHECK(base::MessageLoop::current()->is_running()); 1360 CHECK(base::RunLoop::IsRunningOnCurrentThread());
1360 1361
1361 #if defined(OS_MACOSX) 1362 #if defined(OS_MACOSX)
1362 base::ThreadTaskRunnerHandle::Get()->PostTask( 1363 base::ThreadTaskRunnerHandle::Get()->PostTask(
1363 FROM_HERE, base::Bind(ChromeBrowserMainPartsMac::DidEndMainMessageLoop)); 1364 FROM_HERE, base::Bind(ChromeBrowserMainPartsMac::DidEndMainMessageLoop));
1364 #endif 1365 #endif
1365 base::MessageLoop::current()->QuitWhenIdle(); 1366 base::MessageLoop::current()->QuitWhenIdle();
1366 1367
1367 #if !defined(OS_ANDROID) 1368 #if !defined(OS_ANDROID)
1368 chrome::ShutdownIfNeeded(); 1369 chrome::ShutdownIfNeeded();
1369 #endif // !defined(OS_ANDROID) 1370 #endif // !defined(OS_ANDROID)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 } 1427 }
1427 1428
1428 void BrowserProcessImpl::OnAutoupdateTimer() { 1429 void BrowserProcessImpl::OnAutoupdateTimer() {
1429 if (CanAutorestartForUpdate()) { 1430 if (CanAutorestartForUpdate()) {
1430 DLOG(WARNING) << "Detected update. Restarting browser."; 1431 DLOG(WARNING) << "Detected update. Restarting browser.";
1431 RestartBackgroundInstance(); 1432 RestartBackgroundInstance();
1432 } 1433 }
1433 } 1434 }
1434 1435
1435 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) 1436 #endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
OLDNEW
« no previous file with comments | « chrome/browser/app_controller_mac.mm ('k') | chrome/browser/metrics/chromeos_metrics_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698