OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 // Login password, held during on-line auth for saving later if correct. | 112 // Login password, held during on-line auth for saving later if correct. |
113 std::string password_attempt_; | 113 std::string password_attempt_; |
114 | 114 |
115 // URL hash, used to key post-profile actions if present. | 115 // URL hash, used to key post-profile actions if present. |
116 std::string url_hash_; | 116 std::string url_hash_; |
117 | 117 |
118 typedef std::map<std::string, ScreenlockBridge::LockHandler::AuthType> | 118 typedef std::map<std::string, ScreenlockBridge::LockHandler::AuthType> |
119 UserAuthTypeMap; | 119 UserAuthTypeMap; |
120 UserAuthTypeMap user_auth_type_map_; | 120 UserAuthTypeMap user_auth_type_map_; |
121 | 121 |
| 122 content::NotificationRegistrar registrar_; |
| 123 |
122 base::WeakPtrFactory<UserManagerScreenHandler> weak_ptr_factory_; | 124 base::WeakPtrFactory<UserManagerScreenHandler> weak_ptr_factory_; |
123 | 125 |
124 content::NotificationRegistrar registrar_; | |
125 | |
126 DISALLOW_COPY_AND_ASSIGN(UserManagerScreenHandler); | 126 DISALLOW_COPY_AND_ASSIGN(UserManagerScreenHandler); |
127 }; | 127 }; |
128 | 128 |
129 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ | 129 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_USER_MANAGER_SCREEN_HANDLER_H_ |
OLD | NEW |