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

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

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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_directory_reader_impl.h
===================================================================
--- webkit/plugins/ppapi/ppb_directory_reader_impl.h (revision 72915)
+++ webkit/plugins/ppapi/ppb_directory_reader_impl.h (working copy)
@@ -35,14 +35,14 @@
int32_t GetNextEntry(PP_DirectoryEntry_Dev* entry,
PP_CompletionCallback callback);
- void AddNewEntries(const std::vector<base::FileUtilProxy::Entry>& entries,
+ void AddNewEntries(const std::vector<base::FileUtilProxyBase::Entry>& entries,
bool has_more);
private:
bool FillUpEntry();
scoped_refptr<PPB_FileRef_Impl> directory_ref_;
- std::queue<base::FileUtilProxy::Entry> entries_;
+ std::queue<base::FileUtilProxyBase::Entry> entries_;
bool has_more_;
PP_DirectoryEntry_Dev* entry_;
};

Powered by Google App Engine
This is Rietveld 408576698