| 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_SCREENS_USER_SELECTION_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
| 14 #include "base/values.h" | 14 #include "base/values.h" |
| 15 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" | 15 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" |
| 16 #include "chrome/browser/chromeos/login/ui/login_display.h" | 16 #include "chrome/browser/chromeos/login/ui/login_display.h" |
| 17 #include "chrome/browser/chromeos/login/ui/models/user_board_model.h" | 17 #include "chrome/browser/chromeos/login/ui/models/user_board_model.h" |
| 18 #include "chrome/browser/signin/screenlock_bridge.h" | 18 #include "components/proximity_auth/screenlock_bridge.h" |
| 19 #include "components/user_manager/user.h" | 19 #include "components/user_manager/user.h" |
| 20 #include "components/user_manager/user_id.h" | 20 #include "components/user_manager/user_id.h" |
| 21 #include "ui/base/user_activity/user_activity_observer.h" | 21 #include "ui/base/user_activity/user_activity_observer.h" |
| 22 | 22 |
| 23 class EasyUnlockService; | 23 class EasyUnlockService; |
| 24 | 24 |
| 25 namespace chromeos { | 25 namespace chromeos { |
| 26 | 26 |
| 27 class LoginDisplayWebUIHandler; | 27 class LoginDisplayWebUIHandler; |
| 28 class UserBoardView; | 28 class UserBoardView; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 scoped_ptr<TokenHandleUtil> token_handle_util_; | 145 scoped_ptr<TokenHandleUtil> token_handle_util_; |
| 146 | 146 |
| 147 base::WeakPtrFactory<UserSelectionScreen> weak_factory_; | 147 base::WeakPtrFactory<UserSelectionScreen> weak_factory_; |
| 148 | 148 |
| 149 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); | 149 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace chromeos | 152 } // namespace chromeos |
| 153 | 153 |
| 154 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ | 154 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ |
| OLD | NEW |