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

Unified Diff: components/signin/core/browser/signin_manager.cc

Issue 554233002: Refactoring the WeakPtrFactory usage, Member variables should appear before the WeakPtrFactory, to … (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: components/signin/core/browser/signin_manager.cc
diff --git a/components/signin/core/browser/signin_manager.cc b/components/signin/core/browser/signin_manager.cc
index cd4978e5eac19b03f4629cd97e88531dea7fcb3c..1d4bda2deae736af09e760738198ccb217fc376e 100644
--- a/components/signin/core/browser/signin_manager.cc
+++ b/components/signin/core/browser/signin_manager.cc
@@ -63,9 +63,9 @@ SigninManager::SigninManager(SigninClient* client,
: SigninManagerBase(client),
prohibit_signout_(false),
type_(SIGNIN_TYPE_NONE),
- weak_pointer_factory_(this),
client_(client),
- token_service_(token_service) {}
+ token_service_(token_service),
+ weak_pointer_factory_(this) {}
void SigninManager::AddMergeSessionObserver(
MergeSessionHelper::Observer* observer) {

Powered by Google App Engine
This is Rietveld 408576698