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/chromeos/kiosk_mode/kiosk_mode_idle_logout.h" | 5 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 #include "chrome/browser/chromeos/dbus/dbus_thread_manager.h" | |
12 #include "chrome/browser/chromeos/dbus/power_manager_client.h" | |
13 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" | 11 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h" |
14 #include "chrome/browser/chromeos/login/user_manager.h" | 12 #include "chrome/browser/chromeos/login/user_manager.h" |
15 #include "chrome/browser/chromeos/ui/idle_logout_dialog_view.h" | 13 #include "chrome/browser/chromeos/ui/idle_logout_dialog_view.h" |
16 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/common/chrome_notification_types.h" |
| 15 #include "chromeos/dbus/dbus_thread_manager.h" |
| 16 #include "chromeos/dbus/power_manager_client.h" |
17 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
18 #include "content/public/browser/notification_registrar.h" | 18 #include "content/public/browser/notification_registrar.h" |
19 #include "content/public/browser/notification_service.h" | 19 #include "content/public/browser/notification_service.h" |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 const int64 kLoginIdleTimeout = 100; // seconds | 23 const int64 kLoginIdleTimeout = 100; // seconds |
24 | 24 |
25 } // namespace | 25 } // namespace |
26 | 26 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 } | 109 } |
110 | 110 |
111 static base::LazyInstance<KioskModeIdleLogout> | 111 static base::LazyInstance<KioskModeIdleLogout> |
112 g_kiosk_mode_idle_logout = LAZY_INSTANCE_INITIALIZER; | 112 g_kiosk_mode_idle_logout = LAZY_INSTANCE_INITIALIZER; |
113 | 113 |
114 void InitializeKioskModeIdleLogout() { | 114 void InitializeKioskModeIdleLogout() { |
115 g_kiosk_mode_idle_logout.Get(); | 115 g_kiosk_mode_idle_logout.Get(); |
116 } | 116 } |
117 | 117 |
118 } // namespace chromeos | 118 } // namespace chromeos |
OLD | NEW |