| 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 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h" | 5 #include "chrome/browser/chromeos/login/app_launch_signin_screen.h" |
| 6 | 6 |
| 7 #include "base/values.h" | 7 #include "base/values.h" |
| 8 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 8 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
| 9 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" | 9 #include "chrome/browser/chromeos/login/screens/user_selection_screen.h" |
| 10 #include "chrome/browser/chromeos/login/session/user_session_manager.h" | 10 #include "chrome/browser/chromeos/login/session/user_session_manager.h" |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 } | 152 } |
| 153 | 153 |
| 154 bool AppLaunchSigninScreen::IsShowGuest() const { | 154 bool AppLaunchSigninScreen::IsShowGuest() const { |
| 155 return false; | 155 return false; |
| 156 } | 156 } |
| 157 | 157 |
| 158 bool AppLaunchSigninScreen::IsShowUsers() const { | 158 bool AppLaunchSigninScreen::IsShowUsers() const { |
| 159 return true; | 159 return true; |
| 160 } | 160 } |
| 161 | 161 |
| 162 bool AppLaunchSigninScreen::ShowUsersHasChanged() const { |
| 163 return false; |
| 164 } |
| 165 |
| 166 bool AppLaunchSigninScreen::IsAllowNewUser() const { |
| 167 return true; |
| 168 } |
| 169 |
| 170 bool AppLaunchSigninScreen::AllowNewUserChanged() const { |
| 171 return false; |
| 172 } |
| 173 |
| 162 bool AppLaunchSigninScreen::IsSigninInProgress() const { | 174 bool AppLaunchSigninScreen::IsSigninInProgress() const { |
| 163 // Return true to suppress network processing in the signin screen. | 175 // Return true to suppress network processing in the signin screen. |
| 164 return true; | 176 return true; |
| 165 } | 177 } |
| 166 | 178 |
| 167 bool AppLaunchSigninScreen::IsUserSigninCompleted() const { | 179 bool AppLaunchSigninScreen::IsUserSigninCompleted() const { |
| 168 return false; | 180 return false; |
| 169 } | 181 } |
| 170 | 182 |
| 171 void AppLaunchSigninScreen::SetDisplayEmail(const std::string& email) { | 183 void AppLaunchSigninScreen::SetDisplayEmail(const std::string& email) { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 } | 226 } |
| 215 | 227 |
| 216 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} | 228 void AppLaunchSigninScreen::CheckUserStatus(const AccountId& account_id) {} |
| 217 | 229 |
| 218 bool AppLaunchSigninScreen::IsUserWhitelisted(const AccountId& account_id) { | 230 bool AppLaunchSigninScreen::IsUserWhitelisted(const AccountId& account_id) { |
| 219 NOTREACHED(); | 231 NOTREACHED(); |
| 220 return true; | 232 return true; |
| 221 } | 233 } |
| 222 | 234 |
| 223 } // namespace chromeos | 235 } // namespace chromeos |
| OLD | NEW |