Index: chrome/browser/upgrade_detector_impl.h |
diff --git a/chrome/browser/upgrade_detector_impl.h b/chrome/browser/upgrade_detector_impl.h |
index 63b05e8407b7018addcc047c65eab9ea0a55ad17..90abe05c07c4ed8eadaa66e5af2b06bbd68dae2e 100644 |
--- a/chrome/browser/upgrade_detector_impl.h |
+++ b/chrome/browser/upgrade_detector_impl.h |
@@ -79,11 +79,6 @@ class UpgradeDetectorImpl : |
// has passed and we should start notifying the user. |
base::RepeatingTimer<UpgradeDetectorImpl> upgrade_notification_timer_; |
- // We use this factory to create callback tasks for UpgradeDetected. We pass |
- // the task to the actual upgrade detection code, which is in |
- // DetectUpgradeTask. |
- base::WeakPtrFactory<UpgradeDetectorImpl> weak_factory_; |
- |
// True if this build is a dev or canary channel build. |
bool is_unstable_channel_; |
@@ -97,6 +92,11 @@ class UpgradeDetectorImpl : |
// The date the binaries were built. |
base::Time build_date_; |
+ // We use this factory to create callback tasks for UpgradeDetected. We pass |
+ // the task to the actual upgrade detection code, which is in |
+ // DetectUpgradeTask. |
+ base::WeakPtrFactory<UpgradeDetectorImpl> weak_factory_; |
+ |
DISALLOW_COPY_AND_ASSIGN(UpgradeDetectorImpl); |
}; |