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

Unified Diff: content/common/fileapi/webfilewriter_impl.cc

Issue 14671020: FileAPI: Copy base::FileUtilProxy::Entry to fileapi::DirectoryEntry (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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: content/common/fileapi/webfilewriter_impl.cc
diff --git a/content/common/fileapi/webfilewriter_impl.cc b/content/common/fileapi/webfilewriter_impl.cc
index ac685e1b78fbb7358aead0a4b94da71286b435da..7b7fc9d357e8f29d21bd8d8e64b1499efd6b6ac8 100644
--- a/content/common/fileapi/webfilewriter_impl.cc
+++ b/content/common/fileapi/webfilewriter_impl.cc
@@ -13,7 +13,8 @@ namespace {
inline FileSystemDispatcher* GetFileSystemDispatcher() {
return ChildThread::current()->file_system_dispatcher();
}
-}
+
+} // namespace
class WebFileWriterImpl::CallbackDispatcher
: public fileapi::FileSystemCallbackDispatcher {
@@ -34,7 +35,7 @@ class WebFileWriterImpl::CallbackDispatcher
NOTREACHED();
}
virtual void DidReadDirectory(
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<fileapi::FileSystemOperation::Entry>& entries,
bool has_more) OVERRIDE {
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698