| 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/macros.h" |
| 13 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 14 #include "base/values.h" | 15 #include "base/values.h" |
| 15 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" | 16 #include "chrome/browser/chromeos/login/signin/token_handle_util.h" |
| 16 #include "chrome/browser/chromeos/login/ui/login_display.h" | 17 #include "chrome/browser/chromeos/login/ui/login_display.h" |
| 17 #include "chrome/browser/chromeos/login/ui/models/user_board_model.h" | 18 #include "chrome/browser/chromeos/login/ui/models/user_board_model.h" |
| 18 #include "components/proximity_auth/screenlock_bridge.h" | 19 #include "components/proximity_auth/screenlock_bridge.h" |
| 19 #include "components/signin/core/account_id/account_id.h" | 20 #include "components/signin/core/account_id/account_id.h" |
| 20 #include "components/user_manager/user.h" | 21 #include "components/user_manager/user.h" |
| 21 #include "ui/base/user_activity/user_activity_observer.h" | 22 #include "ui/base/user_activity/user_activity_observer.h" |
| 22 | 23 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 scoped_ptr<TokenHandleUtil> token_handle_util_; | 147 scoped_ptr<TokenHandleUtil> token_handle_util_; |
| 147 | 148 |
| 148 base::WeakPtrFactory<UserSelectionScreen> weak_factory_; | 149 base::WeakPtrFactory<UserSelectionScreen> weak_factory_; |
| 149 | 150 |
| 150 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); | 151 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); |
| 151 }; | 152 }; |
| 152 | 153 |
| 153 } // namespace chromeos | 154 } // namespace chromeos |
| 154 | 155 |
| 155 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ | 156 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ |
| OLD | NEW |