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

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

Issue 11958033: Implement Pepper proxy for PPB_DirectoryReader (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test failure Created 7 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
Index: webkit/plugins/ppapi/file_callbacks.h
diff --git a/webkit/plugins/ppapi/file_callbacks.h b/webkit/plugins/ppapi/file_callbacks.h
index c254dab9030b87dde2f891ca336aecebe4193d9e..ab4882796af8fd3f3f53f20c8d8b73dea34c12fc 100644
--- a/webkit/plugins/ppapi/file_callbacks.h
+++ b/webkit/plugins/ppapi/file_callbacks.h
@@ -38,8 +38,7 @@ class FileCallbacks : public fileapi::FileSystemCallbackDispatcher {
FileCallbacks(::ppapi::Resource* resource,
scoped_refptr< ::ppapi::TrackedCallback> callback,
PP_FileInfo* info,
- scoped_refptr<PPB_FileSystem_Impl> file_system,
- scoped_refptr<PPB_DirectoryReader_Impl> directory_reader);
+ scoped_refptr<PPB_FileSystem_Impl> file_system);
virtual ~FileCallbacks();
// FileSystemCallbackDispatcher implementation.
@@ -62,7 +61,6 @@ class FileCallbacks : public fileapi::FileSystemCallbackDispatcher {
scoped_refptr< ::ppapi::TrackedCallback> callback_;
PP_FileInfo* info_;
scoped_refptr<PPB_FileSystem_Impl> file_system_;
- scoped_refptr<PPB_DirectoryReader_Impl> directory_reader_;
};
} // namespace ppapi

Powered by Google App Engine
This is Rietveld 408576698