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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc

Issue 738313003: Fix WeakPtrFactory member ordering in components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
index 3a4ab52c5e58f59dedee3e213bff307d6013fa1b..93d23208247b5439f56862ef6c273b42c8a54a3b 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.cc
@@ -25,8 +25,8 @@ DataReductionProxyStatisticsPrefs::DataReductionProxyStatisticsPrefs(
task_runner_(task_runner),
delay_(delay),
delayed_task_posted_(false),
- weak_factory_(this),
- pref_change_registrar_(new PrefChangeRegistrar()) {
+ pref_change_registrar_(new PrefChangeRegistrar()),
+ weak_factory_(this) {
DCHECK(prefs);
DCHECK_GE(delay.InMilliseconds(), 0);
Init();
« no previous file with comments | « components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698