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

Unified Diff: chrome/browser/media_galleries/fileapi/itunes_file_util.cc

Issue 575993002: Fix WeakPtrFactory member ordering in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/media_galleries/fileapi/itunes_file_util.h ('k') | chrome/browser/net/dns_probe_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media_galleries/fileapi/itunes_file_util.cc
diff --git a/chrome/browser/media_galleries/fileapi/itunes_file_util.cc b/chrome/browser/media_galleries/fileapi/itunes_file_util.cc
index 074bdd8aee905ddabbf81a5dc9bbd5a0c1908d23..41185eee5620c602ee6cba752ddbadfcb0386646 100644
--- a/chrome/browser/media_galleries/fileapi/itunes_file_util.cc
+++ b/chrome/browser/media_galleries/fileapi/itunes_file_util.cc
@@ -58,8 +58,8 @@ const char kITunesAutoAddDir[] = "Automatically Add to iTunes";
ITunesFileUtil::ITunesFileUtil(MediaPathFilter* media_path_filter)
: NativeMediaFileUtil(media_path_filter),
- weak_factory_(this),
- imported_registry_(NULL) {
+ imported_registry_(NULL),
+ weak_factory_(this) {
}
ITunesFileUtil::~ITunesFileUtil() {
« no previous file with comments | « chrome/browser/media_galleries/fileapi/itunes_file_util.h ('k') | chrome/browser/net/dns_probe_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698