| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/screen_locker.h" | 5 #include "chrome/browser/chromeos/login/screen_locker.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "authentication success."; | 254 "authentication success."; |
| 255 return; | 255 return; |
| 256 } | 256 } |
| 257 | 257 |
| 258 if (login_status_consumer_) { | 258 if (login_status_consumer_) { |
| 259 login_status_consumer_->OnLoginSuccess( | 259 login_status_consumer_->OnLoginSuccess( |
| 260 UserContext(authentication_capture_->user_context.username, | 260 UserContext(authentication_capture_->user_context.username, |
| 261 authentication_capture_->user_context.password, | 261 authentication_capture_->user_context.password, |
| 262 authentication_capture_->user_context.auth_code, | 262 authentication_capture_->user_context.auth_code, |
| 263 authentication_capture_->user_context.username_hash, | 263 authentication_capture_->user_context.username_hash, |
| 264 authentication_capture_->user_context.using_oauth, | 264 authentication_capture_->user_context.using_oauth)); |
| 265 authentication_capture_->user_context.auth_flow)); | |
| 266 } | 265 } |
| 267 authentication_capture_.reset(); | 266 authentication_capture_.reset(); |
| 268 weak_factory_.InvalidateWeakPtrs(); | 267 weak_factory_.InvalidateWeakPtrs(); |
| 269 | 268 |
| 270 VLOG(1) << "Hiding the lock screen."; | 269 VLOG(1) << "Hiding the lock screen."; |
| 271 chromeos::ScreenLocker::Hide(); | 270 chromeos::ScreenLocker::Hide(); |
| 272 } | 271 } |
| 273 | 272 |
| 274 void ScreenLocker::Authenticate(const UserContext& user_context) { | 273 void ScreenLocker::Authenticate(const UserContext& user_context) { |
| 275 LOG_ASSERT(IsUserLoggedIn(user_context.username)) | 274 LOG_ASSERT(IsUserLoggedIn(user_context.username)) |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 468 |
| 470 bool ScreenLocker::IsUserLoggedIn(const std::string& username) { | 469 bool ScreenLocker::IsUserLoggedIn(const std::string& username) { |
| 471 for (UserList::const_iterator it = users_.begin(); it != users_.end(); ++it) { | 470 for (UserList::const_iterator it = users_.begin(); it != users_.end(); ++it) { |
| 472 if ((*it)->email() == username) | 471 if ((*it)->email() == username) |
| 473 return true; | 472 return true; |
| 474 } | 473 } |
| 475 return false; | 474 return false; |
| 476 } | 475 } |
| 477 | 476 |
| 478 } // namespace chromeos | 477 } // namespace chromeos |
| OLD | NEW |