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

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

Issue 795943002: Fix WeakPtrFactory member ordering in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding more changes Created 6 years 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/iphoto_file_util.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media_galleries/fileapi/iphoto_file_util.cc
diff --git a/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc b/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc
index 08bc6438c4ee96436e8f8a7414507b683ddcf8fb..ab47addd7f8852de89e4d8530a8aa33ba17632e7 100644
--- a/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc
+++ b/chrome/browser/media_galleries/fileapi/iphoto_file_util.cc
@@ -69,8 +69,8 @@ const char kIPhotoOriginalsDir[] = "Originals";
IPhotoFileUtil::IPhotoFileUtil(MediaPathFilter* media_path_filter)
: NativeMediaFileUtil(media_path_filter),
- weak_factory_(this),
- imported_registry_(NULL) {
+ imported_registry_(NULL),
+ weak_factory_(this) {
}
IPhotoFileUtil::~IPhotoFileUtil() {
« no previous file with comments | « chrome/browser/media_galleries/fileapi/iphoto_file_util.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698