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

Unified Diff: chrome/browser/sync/backend_migrator.cc

Issue 26594002: Chrome sync: Put WeakPtrFactory members at the end (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge (see prior patch for try jobs) Created 7 years, 2 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/sync/backend_migrator.cc
diff --git a/chrome/browser/sync/backend_migrator.cc b/chrome/browser/sync/backend_migrator.cc
index cadf28eca79e96b5eb24b6f30982ea3c6535a76b..9c7a141d942f5b3c5144822c4bb4b9c784603e15 100644
--- a/chrome/browser/sync/backend_migrator.cc
+++ b/chrome/browser/sync/backend_migrator.cc
@@ -31,8 +31,8 @@ BackendMigrator::BackendMigrator(const std::string& name,
const base::Closure &migration_done_callback)
: name_(name), user_share_(user_share), service_(service),
manager_(manager), state_(IDLE),
- weak_ptr_factory_(this),
- migration_done_callback_(migration_done_callback) {
+ migration_done_callback_(migration_done_callback),
+ weak_ptr_factory_(this) {
}
BackendMigrator::~BackendMigrator() {

Powered by Google App Engine
This is Rietveld 408576698