| 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> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "ui/keyboard/keyboard_controller_observer.h" | 26 #include "ui/keyboard/keyboard_controller_observer.h" |
| 27 #include "ui/views/widget/widget.h" | 27 #include "ui/views/widget/widget.h" |
| 28 #include "ui/views/widget/widget_observer.h" | 28 #include "ui/views/widget/widget_observer.h" |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 class WebUI; | 31 class WebUI; |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace chromeos { | 34 namespace chromeos { |
| 35 | 35 |
| 36 class OobeUI; | |
| 37 class ScreenLocker; | 36 class ScreenLocker; |
| 38 class WebUILoginDisplay; | 37 class WebUILoginDisplay; |
| 39 | 38 |
| 40 namespace login { | 39 namespace login { |
| 41 class NetworkStateHelper; | 40 class NetworkStateHelper; |
| 42 } | 41 } |
| 43 | 42 |
| 44 namespace test { | 43 namespace test { |
| 45 class WebUIScreenLockerTester; | 44 class WebUIScreenLockerTester; |
| 46 } | 45 } |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 bool is_observing_keyboard_ = false; | 181 bool is_observing_keyboard_ = false; |
| 183 | 182 |
| 184 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 183 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
| 185 | 184 |
| 186 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 185 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
| 187 }; | 186 }; |
| 188 | 187 |
| 189 } // namespace chromeos | 188 } // namespace chromeos |
| 190 | 189 |
| 191 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 190 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
| OLD | NEW |