| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "ash/shell_delegate.h" | 12 #include "ash/shell_delegate.h" |
| 11 #include "ash/wm/lock_state_observer.h" | 13 #include "ash/wm/lock_state_observer.h" |
| 12 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 15 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 16 #include "chrome/browser/chromeos/login/lock/screen_locker_delegate.h" | 19 #include "chrome/browser/chromeos/login/lock/screen_locker_delegate.h" |
| 17 #include "chrome/browser/chromeos/login/signin_screen_controller.h" | 20 #include "chrome/browser/chromeos/login/signin_screen_controller.h" |
| 18 #include "chrome/browser/chromeos/login/signin_specifics.h" | 21 #include "chrome/browser/chromeos/login/signin_specifics.h" |
| 19 #include "chrome/browser/chromeos/login/ui/lock_window.h" | 22 #include "chrome/browser/chromeos/login/ui/lock_window.h" |
| 20 #include "chrome/browser/chromeos/login/ui/login_display.h" | 23 #include "chrome/browser/chromeos/login/ui/login_display.h" |
| 21 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" | 24 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" |
| 22 #include "chromeos/dbus/power_manager_client.h" | 25 #include "chromeos/dbus/power_manager_client.h" |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 bool is_observing_keyboard_; | 165 bool is_observing_keyboard_; |
| 163 | 166 |
| 164 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 167 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
| 165 | 168 |
| 166 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 169 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
| 167 }; | 170 }; |
| 168 | 171 |
| 169 } // namespace chromeos | 172 } // namespace chromeos |
| 170 | 173 |
| 171 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 174 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| OLD | NEW |