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 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 void SetHandler(LoginDisplayWebUIHandler* handler); | 34 void SetHandler(LoginDisplayWebUIHandler* handler); |
35 | 35 |
36 void Init(const UserList& users, bool show_guest); | 36 void Init(const UserList& users, bool show_guest); |
37 const UserList& GetUsers() const; | 37 const UserList& GetUsers() const; |
38 void OnUserImageChanged(const User& user); | 38 void OnUserImageChanged(const User& user); |
39 void OnBeforeUserRemoved(const std::string& username); | 39 void OnBeforeUserRemoved(const std::string& username); |
40 void OnUserRemoved(const std::string& username); | 40 void OnUserRemoved(const std::string& username); |
41 | 41 |
42 void OnPasswordClearTimerExpired(); | 42 void OnPasswordClearTimerExpired(); |
43 void SendUserList(bool animated); | 43 void SendUserList(); |
44 void HandleGetUsers(); | 44 void HandleGetUsers(); |
45 void SetAuthType(const std::string& username, | 45 void SetAuthType(const std::string& username, |
46 ScreenlockBridge::LockHandler::AuthType auth_type); | 46 ScreenlockBridge::LockHandler::AuthType auth_type); |
47 ScreenlockBridge::LockHandler::AuthType GetAuthType( | 47 ScreenlockBridge::LockHandler::AuthType GetAuthType( |
48 const std::string& username) const; | 48 const std::string& username) const; |
49 | 49 |
50 // wm::UserActivityDetector implementation: | 50 // wm::UserActivityDetector implementation: |
51 virtual void OnUserActivity(const ui::Event* event) OVERRIDE; | 51 virtual void OnUserActivity(const ui::Event* event) OVERRIDE; |
52 | 52 |
53 // Fills |user_dict| with information about |user|. | 53 // Fills |user_dict| with information about |user|. |
(...skipping 23 matching lines...) Expand all Loading... |
77 | 77 |
78 // Timer for measuring idle state duration before password clear. | 78 // Timer for measuring idle state duration before password clear. |
79 base::OneShotTimer<UserSelectionScreen> password_clear_timer_; | 79 base::OneShotTimer<UserSelectionScreen> password_clear_timer_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); | 81 DISALLOW_COPY_AND_ASSIGN(UserSelectionScreen); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace chromeos | 84 } // namespace chromeos |
85 | 85 |
86 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ | 86 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_SELECTION_SCREEN_H_ |
OLD | NEW |