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

Unified Diff: webkit/fileapi/file_system_callback_dispatcher.h

Issue 4261001: Moving Entry from base::file_util_proxy namespace to within class base::FileU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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/fileapi/file_system_callback_dispatcher.h
===================================================================
--- webkit/fileapi/file_system_callback_dispatcher.h (revision 64690)
+++ webkit/fileapi/file_system_callback_dispatcher.h (working copy)
@@ -33,7 +33,7 @@
// all contents (the subsets reported in any two calls are disjoint), and
// |has_more| will be true, except for the last chunk.
virtual void DidReadDirectory(
- const std::vector<base::file_util_proxy::Entry>& entries,
+ const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more) = 0;
// Callback for opening a file system. Called with a name and root path for
@@ -48,6 +48,6 @@
virtual void DidWrite(int64 bytes, bool complete) = 0;
};
-} // namespace fileapi
+} // namespace fileapi
-#endif // WEBKIT_FILEAPI_FILE_SYSTEM_CALLBACK_DISPATCHER_H_
+#endif // WEBKIT_FILEAPI_FILE_SYSTEM_CALLBACK_DISPATCHER_H_

Powered by Google App Engine
This is Rietveld 408576698