OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/chromeos/system/automatic_reboot_manager.h" | 5 #include "chrome/browser/chromeos/system/automatic_reboot_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "base/single_thread_task_runner.h" | 23 #include "base/single_thread_task_runner.h" |
24 #include "base/strings/string_number_conversions.h" | 24 #include "base/strings/string_number_conversions.h" |
25 #include "base/thread_task_runner_handle.h" | 25 #include "base/thread_task_runner_handle.h" |
26 #include "base/threading/sequenced_worker_pool.h" | 26 #include "base/threading/sequenced_worker_pool.h" |
27 #include "base/time/tick_clock.h" | 27 #include "base/time/tick_clock.h" |
28 #include "chrome/browser/browser_process.h" | 28 #include "chrome/browser/browser_process.h" |
29 #include "chrome/browser/chromeos/login/user_manager.h" | 29 #include "chrome/browser/chromeos/login/user_manager.h" |
30 #include "chrome/common/chrome_notification_types.h" | 30 #include "chrome/common/chrome_notification_types.h" |
31 #include "chrome/common/chrome_paths.h" | 31 #include "chrome/common/chrome_paths.h" |
32 #include "chrome/common/pref_names.h" | 32 #include "chrome/common/pref_names.h" |
| 33 #include "chromeos/chromeos_switches.h" |
33 #include "chromeos/dbus/dbus_thread_manager.h" | 34 #include "chromeos/dbus/dbus_thread_manager.h" |
34 #include "content/public/browser/browser_thread.h" | 35 #include "content/public/browser/browser_thread.h" |
35 #include "content/public/browser/notification_details.h" | 36 #include "content/public/browser/notification_details.h" |
36 #include "content/public/browser/notification_service.h" | 37 #include "content/public/browser/notification_service.h" |
37 #include "content/public/browser/notification_source.h" | 38 #include "content/public/browser/notification_source.h" |
38 | 39 |
39 namespace chromeos { | 40 namespace chromeos { |
40 namespace system { | 41 namespace system { |
41 | 42 |
42 namespace { | 43 namespace { |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 | 345 |
345 void AutomaticRebootManager::Reboot() { | 346 void AutomaticRebootManager::Reboot() { |
346 login_screen_idle_timer_.reset(); | 347 login_screen_idle_timer_.reset(); |
347 grace_start_timer_.reset(); | 348 grace_start_timer_.reset(); |
348 grace_end_timer_.reset(); | 349 grace_end_timer_.reset(); |
349 DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart(); | 350 DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart(); |
350 } | 351 } |
351 | 352 |
352 } // namespace system | 353 } // namespace system |
353 } // namespace chromeos | 354 } // namespace chromeos |
OLD | NEW |