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

Unified Diff: webkit/plugins/ppapi/ppb_file_io_impl.h

Issue 8231004: Remaining cleanup (base::Bind): Replacing FileUtilProxy calls with new callback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years, 2 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: webkit/plugins/ppapi/ppb_file_io_impl.h
diff --git a/webkit/plugins/ppapi/ppb_file_io_impl.h b/webkit/plugins/ppapi/ppb_file_io_impl.h
index 491bf72c6ad817d7e5c7f2dbd59b439569afb043..22845217e13f6081c20a9721150d5a9a5add727f 100644
--- a/webkit/plugins/ppapi/ppb_file_io_impl.h
+++ b/webkit/plugins/ppapi/ppb_file_io_impl.h
@@ -124,8 +124,6 @@ class PPB_FileIO_Impl : public ::ppapi::Resource,
void WriteCallback(base::PlatformFileError error_code, int bytes_written);
void WillWriteCallback(base::PlatformFileError error_code, int bytes_written);
- base::WeakPtrFactory<PPB_FileIO_Impl> weak_factory_;
-
base::PlatformFile file_;
PP_FileSystemType file_system_type_;
@@ -143,7 +141,7 @@ class PPB_FileIO_Impl : public ::ppapi::Resource,
// of type PP_FILESYSTEMTYPE_LOCAL{PERSISTENT,TEMPORARY} is opened.
scoped_ptr<QuotaFileIO> quota_file_io_;
- base::WeakPtrFactory<PPB_FileIO_Impl> weak_ptr_factory_;
+ base::WeakPtrFactory<PPB_FileIO_Impl> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(PPB_FileIO_Impl);
};

Powered by Google App Engine
This is Rietveld 408576698