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

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

Issue 566863003: Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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 719dd95cfede65aa0b8236ce0617067d31c1389d..9b9342215f060a0623c9108b4234c2632c68a40a 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -139,14 +139,14 @@ ExistingUserController::ExistingUserController(LoginDisplayHost* host)
login_display_(host_->CreateLoginDisplay(this)),
num_login_attempts_(0),
cros_settings_(CrosSettings::Get()),
- weak_factory_(this),
offline_failed_(false),
is_login_in_progress_(false),
password_changed_(false),
auth_mode_(LoginPerformer::AUTH_MODE_EXTENSION),
do_auto_enrollment_(false),
signin_screen_ready_(false),
- network_state_helper_(new login::NetworkStateHelper) {
+ network_state_helper_(new login::NetworkStateHelper),
+ weak_factory_(this) {
DCHECK(current_controller_ == NULL);
current_controller_ = this;

Powered by Google App Engine
This is Rietveld 408576698