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

Unified Diff: chrome/browser/ui/browser.h

Issue 572853002: Realigning the WeakPtrFactory initialization order in chrome/ui folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed mac error 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
« no previous file with comments | « chrome/browser/ui/ash/system_tray_delegate_chromeos.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.h
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
index 9a1cbed1819fd41f510c09b7a2395b2e12c0637e..5f358cb65cba3099df3f9ec9dbdebe582e4e0884 100644
--- a/chrome/browser/ui/browser.h
+++ b/chrome/browser/ui/browser.h
@@ -950,13 +950,13 @@ class Browser : public TabStripModelObserver,
// The following factory is used for chrome update coalescing.
base::WeakPtrFactory<Browser> chrome_updater_factory_;
- // The following factory is used to close the frame at a later time.
- base::WeakPtrFactory<Browser> weak_factory_;
-
scoped_ptr<BrowserContentTranslateDriverObserver> translate_driver_observer_;
scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_;
+ // The following factory is used to close the frame at a later time.
+ base::WeakPtrFactory<Browser> weak_factory_;
+
DISALLOW_COPY_AND_ASSIGN(Browser);
};
« no previous file with comments | « chrome/browser/ui/ash/system_tray_delegate_chromeos.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698