Index: chrome/browser/jumplist_win.cc |
diff --git a/chrome/browser/jumplist_win.cc b/chrome/browser/jumplist_win.cc |
index 251f122cf77ad0874ece3f2f7f0c6365029f1e0a..dadc19ab3ab14117346d4179a49585b9fc331577 100644 |
--- a/chrome/browser/jumplist_win.cc |
+++ b/chrome/browser/jumplist_win.cc |
@@ -186,9 +186,9 @@ bool UpdateJumpList(const wchar_t* app_id, |
} // namespace |
JumpList::JumpList(Profile* profile) |
- : weak_ptr_factory_(this), |
- profile_(profile), |
- task_id_(base::CancelableTaskTracker::kBadTaskId) { |
+ : profile_(profile), |
+ task_id_(base::CancelableTaskTracker::kBadTaskId), |
+ weak_ptr_factory_(this) { |
DCHECK(Enabled()); |
// To update JumpList when a tab is added or removed, we add this object to |
// the observer list of the TabRestoreService class. |