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

Unified Diff: chrome/browser/chromeos/policy/device_status_collector.cc

Issue 572873002: Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build break fixed 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: chrome/browser/chromeos/policy/device_status_collector.cc
diff --git a/chrome/browser/chromeos/policy/device_status_collector.cc b/chrome/browser/chromeos/policy/device_status_collector.cc
index 377c827078342e2caf03724263a86b670fa76a66..67984146942512a032ce4b1ec5b377a4f2a73406 100644
--- a/chrome/browser/chromeos/policy/device_status_collector.cc
+++ b/chrome/browser/chromeos/policy/device_status_collector.cc
@@ -88,13 +88,13 @@ DeviceStatusCollector::DeviceStatusCollector(
duration_for_last_reported_day_(0),
geolocation_update_in_progress_(false),
statistics_provider_(provider),
- weak_factory_(this),
report_version_info_(false),
report_activity_times_(false),
report_boot_mode_(false),
report_location_(false),
report_network_interfaces_(false),
- report_users_(false) {
+ report_users_(false),
+ weak_factory_(this) {
if (location_update_requester)
location_update_requester_ = *location_update_requester;
idle_poll_timer_.Start(FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698