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 <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/wm/lock_state_observer.h" | 10 #include "ash/wm/lock_state_observer.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "ui/views/widget/widget_observer.h" | 23 #include "ui/views/widget/widget_observer.h" |
24 | 24 |
25 namespace content { | 25 namespace content { |
26 class WebUI; | 26 class WebUI; |
27 } | 27 } |
28 | 28 |
29 namespace chromeos { | 29 namespace chromeos { |
30 | 30 |
31 class ScreenLocker; | 31 class ScreenLocker; |
32 class WebUILoginDisplay; | 32 class WebUILoginDisplay; |
33 class UserContext; | |
34 | 33 |
35 namespace login { | 34 namespace login { |
36 class NetworkStateHelper; | 35 class NetworkStateHelper; |
37 } | 36 } |
38 | 37 |
39 namespace test { | 38 namespace test { |
40 class WebUIScreenLockerTester; | 39 class WebUIScreenLockerTester; |
41 } | 40 } |
42 | 41 |
43 // This version of ScreenLockerDelegate displays a WebUI lock screen based on | 42 // This version of ScreenLockerDelegate displays a WebUI lock screen based on |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 scoped_ptr<login::NetworkStateHelper> network_state_helper_; | 152 scoped_ptr<login::NetworkStateHelper> network_state_helper_; |
154 | 153 |
155 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; | 154 base::WeakPtrFactory<WebUIScreenLocker> weak_factory_; |
156 | 155 |
157 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); | 156 DISALLOW_COPY_AND_ASSIGN(WebUIScreenLocker); |
158 }; | 157 }; |
159 | 158 |
160 } // namespace chromeos | 159 } // namespace chromeos |
161 | 160 |
162 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ | 161 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WEBUI_SCREEN_LOCKER_H_ |
OLD | NEW |