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

Unified Diff: chrome/common/file_system/webfilesystem_callback_dispatcher.cc

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: chrome/common/file_system/webfilesystem_callback_dispatcher.cc
===================================================================
--- chrome/common/file_system/webfilesystem_callback_dispatcher.cc (revision 72915)
+++ chrome/common/file_system/webfilesystem_callback_dispatcher.cc (working copy)
@@ -45,7 +45,7 @@
}
void WebFileSystemCallbackDispatcher::DidReadDirectory(
- const std::vector<base::FileUtilProxy::Entry>& entries, bool has_more) {
+ const std::vector<base::FileUtilProxyBase::Entry>& entries, bool has_more) {
WebVector<WebFileSystemEntry> file_system_entries(entries.size());
for (size_t i = 0; i < entries.size(); i++) {
file_system_entries[i].name =

Powered by Google App Engine
This is Rietveld 408576698