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

Unified Diff: base/file_util_proxy.h

Issue 3347005: Moving file_util::FileInfo to base::PlatformFileInfo, and adding the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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: base/file_util_proxy.h
===================================================================
--- base/file_util_proxy.h (revision 58317)
+++ base/file_util_proxy.h (working copy)
@@ -14,10 +14,6 @@
#include "base/ref_counted.h"
#include "base/tracked_objects.h"
-namespace file_util {
-struct FileInfo;
-}
-
namespace base {
namespace file_util_proxy {
@@ -29,6 +25,7 @@
} // namespace file_util_proxy
class MessageLoopProxy;
+class Time;
// This class provides asynchronous access to common file routines.
class FileUtilProxy {
@@ -66,7 +63,7 @@
// Retrieves the information about a file. It is invalid to pass NULL for the
// callback.
typedef Callback2<base::PlatformFileError /* error code */,
- const file_util::FileInfo& /*file_info*/
+ const base::PlatformFileInfo& /* file_info */
>::Type GetFileInfoCallback;
static bool GetFileInfo(
scoped_refptr<MessageLoopProxy> message_loop_proxy,
« no previous file with comments | « base/file_util_posix.cc ('k') | base/file_util_proxy.cc » ('j') | base/platform_file.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698