Home | History | Annotate | Download | only in drive

Lines Matching refs:base

24 #include "base/basictypes.h"
25 #include "base/callback_forward.h"
26 #include "base/memory/weak_ptr.h"
27 #include "base/platform_file.h"
31 namespace base {
33 } // namespace base
45 typedef base::Callback<FileSystemInterface*()> FileSystemGetter;
47 typedef base::Callback<
48 void(base::PlatformFileError result)> StatusCallback;
49 typedef base::Callback<
50 void(base::PlatformFileError result,
51 const base::PlatformFileInfo& file_info)> GetFileInfoCallback;
52 typedef base::Callback<
53 void(base::PlatformFileError result,
56 typedef base::Callback<
57 void(base::PlatformFileError result,
58 const base::PlatformFileInfo& file_info,
59 const base::FilePath& snapshot_file_path,
62 typedef base::Callback<
63 void(base::PlatformFileError result,
64 const base::FilePath& snapshot_file_path,
65 const base::Closure& close_callback)>
67 typedef base::Callback<
68 void(base::PlatformFileError result,
69 base::PlatformFile platform_file,
70 const base::Closure& close_callback)> OpenFileCallback;
81 const base::Callback<void(FileSystemInterface*)>& callback,
82 const base::Closure& error_callback);
86 void GetFileInfo(const base::FilePath& file_path,
92 void Copy(const base::FilePath& src_file_path,
93 const base::FilePath& dest_file_path,
99 void Move(const base::FilePath& src_file_path,
100 const base::FilePath& dest_file_path,
107 void CopyInForeignFile(const base::FilePath& src_foreign_file_path,
108 const base::FilePath& dest_file_path,
114 void ReadDirectory(const base::FilePath& file_path,
119 void Remove(const base::FilePath& file_path,
126 void CreateDirectory(const base::FilePath& file_path,
134 void CreateFile(const base::FilePath& file_path,
141 void Truncate(const base::FilePath& file_path,
148 void CreateSnapshotFile(const base::FilePath& file_path,
155 const base::FilePath& file_path,
161 void OpenFile(const base::FilePath& file_path,
168 void TouchFile(const base::FilePath& file_path,
169 const base::Time& last_access_time,
170 const base::Time& last_modified_time,