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

Unified Diff: chrome/browser/extensions/updater/local_extension_cache.cc

Issue 846153005: Move WeakPtrFactory member to the end of LocalExtensionCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/extensions/updater/local_extension_cache.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/updater/local_extension_cache.cc
diff --git a/chrome/browser/extensions/updater/local_extension_cache.cc b/chrome/browser/extensions/updater/local_extension_cache.cc
index 5cfc02d5b7deaa03ea03aab5eb36b767b15cc2c7..943b3698425e29c495d835fa2927038d7f0f95f6 100644
--- a/chrome/browser/extensions/updater/local_extension_cache.cc
+++ b/chrome/browser/extensions/updater/local_extension_cache.cc
@@ -38,9 +38,9 @@ LocalExtensionCache::LocalExtensionCache(
min_cache_age_(base::Time::Now() - max_cache_age),
backend_task_runner_(backend_task_runner),
state_(kUninitialized),
- weak_ptr_factory_(this),
cache_status_polling_delay_(
- base::TimeDelta::FromMilliseconds(kCacheStatusPollingDelayMs)) {
+ base::TimeDelta::FromMilliseconds(kCacheStatusPollingDelayMs)),
+ weak_ptr_factory_(this) {
}
LocalExtensionCache::~LocalExtensionCache() {
« no previous file with comments | « chrome/browser/extensions/updater/local_extension_cache.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698