Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1124)

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.cc

Issue 5809001: Removed old login screen from source. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed long line Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index 9718534e801e930ef988fbfb8f3d6144019b9299..037f7cd44f7e3c88ffce127f12b6c47c9e2d906e 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -115,6 +115,8 @@ void EnableTooltipsIfNeeded(const std::vector<UserController*>& controllers) {
ExistingUserController*
ExistingUserController::delete_scheduled_instance_ = NULL;
+ExistingUserController*
+ ExistingUserController::current_controller_ = NULL;
// TODO(xiyuan): Wait for the cached settings update before using them.
ExistingUserController::ExistingUserController(
@@ -130,6 +132,8 @@ ExistingUserController::ExistingUserController(
method_factory_(this) {
if (delete_scheduled_instance_)
delete_scheduled_instance_->Delete();
+ DCHECK(current_controller_ == NULL);
+ current_controller_ = this;
// Caclulate the max number of users from available screen size.
if (UserCrosSettingsProvider::cached_show_users_on_signin()) {
@@ -243,6 +247,8 @@ ExistingUserController::~ExistingUserController() {
WmMessageListener::instance()->RemoveObserver(this);
STLDeleteElements(&controllers_);
+ DCHECK(current_controller_ != NULL);
+ current_controller_ = NULL;
}
void ExistingUserController::Delete() {

Powered by Google App Engine
This is Rietveld 408576698