OLD | NEW |
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/lifetime/application_lifetime.h" | 5 #include "chrome/browser/lifetime/application_lifetime.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "chrome/browser/ui/browser.h" | 26 #include "chrome/browser/ui/browser.h" |
27 #include "chrome/browser/ui/browser_finder.h" | 27 #include "chrome/browser/ui/browser_finder.h" |
28 #include "chrome/browser/ui/browser_iterator.h" | 28 #include "chrome/browser/ui/browser_iterator.h" |
29 #include "chrome/browser/ui/browser_tabstrip.h" | 29 #include "chrome/browser/ui/browser_tabstrip.h" |
30 #include "chrome/browser/ui/browser_window.h" | 30 #include "chrome/browser/ui/browser_window.h" |
31 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 31 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
32 #include "chrome/browser/ui/user_manager.h" | 32 #include "chrome/browser/ui/user_manager.h" |
33 #include "chrome/common/chrome_constants.h" | 33 #include "chrome/common/chrome_constants.h" |
34 #include "chrome/common/chrome_switches.h" | 34 #include "chrome/common/chrome_switches.h" |
35 #include "chrome/common/pref_names.h" | 35 #include "chrome/common/pref_names.h" |
36 #include "content/public/browser/browser_shutdown.h" | |
37 #include "content/public/browser/browser_thread.h" | 36 #include "content/public/browser/browser_thread.h" |
38 #include "content/public/browser/navigation_details.h" | 37 #include "content/public/browser/navigation_details.h" |
39 #include "content/public/browser/notification_service.h" | 38 #include "content/public/browser/notification_service.h" |
40 | 39 |
41 #if defined(OS_CHROMEOS) | 40 #if defined(OS_CHROMEOS) |
42 #include "base/sys_info.h" | 41 #include "base/sys_info.h" |
43 #include "chrome/browser/chromeos/boot_times_recorder.h" | 42 #include "chrome/browser/chromeos/boot_times_recorder.h" |
44 #include "chromeos/dbus/dbus_thread_manager.h" | 43 #include "chromeos/dbus/dbus_thread_manager.h" |
45 #include "chromeos/dbus/session_manager_client.h" | 44 #include "chromeos/dbus/session_manager_client.h" |
46 #include "chromeos/dbus/update_engine_client.h" | 45 #include "chromeos/dbus/update_engine_client.h" |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 return true; | 424 return true; |
426 } | 425 } |
427 | 426 |
428 void DisableShutdownForTesting(bool disable_shutdown_for_testing) { | 427 void DisableShutdownForTesting(bool disable_shutdown_for_testing) { |
429 g_disable_shutdown_for_testing = disable_shutdown_for_testing; | 428 g_disable_shutdown_for_testing = disable_shutdown_for_testing; |
430 if (!g_disable_shutdown_for_testing && !WillKeepAlive()) | 429 if (!g_disable_shutdown_for_testing && !WillKeepAlive()) |
431 CloseAllBrowsersIfNeeded(); | 430 CloseAllBrowsersIfNeeded(); |
432 } | 431 } |
433 | 432 |
434 } // namespace chrome | 433 } // namespace chrome |
OLD | NEW |