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

Side by Side Diff: webkit/browser/fileapi/async_file_util.h

Issue 21370003: Rename fileapi::LocalFileSystemOperation to FileSystemOperationImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/browser/fileapi/file_system_operation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ 5 #ifndef WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_
6 #define WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ 6 #define WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 9 #include "base/callback_forward.h"
10 #include "base/files/file_util_proxy.h" 10 #include "base/files/file_util_proxy.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/platform_file.h" 12 #include "base/platform_file.h"
13 #include "webkit/browser/webkit_storage_browser_export.h" 13 #include "webkit/browser/webkit_storage_browser_export.h"
14 #include "webkit/common/fileapi/directory_entry.h" 14 #include "webkit/common/fileapi/directory_entry.h"
15 15
16 namespace base { 16 namespace base {
17 class Time; 17 class Time;
18 } 18 }
19 19
20 namespace webkit_blob { 20 namespace webkit_blob {
21 class ShareableFileReference; 21 class ShareableFileReference;
22 } 22 }
23 23
24 namespace fileapi { 24 namespace fileapi {
25 25
26 class FileSystemOperationContext; 26 class FileSystemOperationContext;
27 class FileSystemURL; 27 class FileSystemURL;
28 28
29 // An interface which provides filesystem-specific file operations for 29 // An interface which provides filesystem-specific file operations for
30 // LocalFileSystemOperation. 30 // FileSystemOperationImpl.
31 // 31 //
32 // Each filesystem which needs to be dispatched from LocalFileSystemOperation 32 // Each filesystem which needs to be dispatched from FileSystemOperationImpl
33 // must implement this interface or a synchronous version of interface: 33 // must implement this interface or a synchronous version of interface:
34 // FileSystemFileUtil. 34 // FileSystemFileUtil.
35 // 35 //
36 // As far as an instance of this class is owned by a FileSystemBackend 36 // As far as an instance of this class is owned by a FileSystemBackend
37 // (which is owned by FileSystemContext), it's guaranteed that this instance's 37 // (which is owned by FileSystemContext), it's guaranteed that this instance's
38 // alive while FileSystemOperationContext given to each operation is kept 38 // alive while FileSystemOperationContext given to each operation is kept
39 // alive. (Note that this instance might be freed on different thread 39 // alive. (Note that this instance might be freed on different thread
40 // from the thread it is created.) 40 // from the thread it is created.)
41 // 41 //
42 // It is NOT valid to give null callback to this class, and implementors 42 // It is NOT valid to give null callback to this class, and implementors
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 )> CreateSnapshotFileCallback; 77 )> CreateSnapshotFileCallback;
78 78
79 AsyncFileUtil() {} 79 AsyncFileUtil() {}
80 virtual ~AsyncFileUtil() {} 80 virtual ~AsyncFileUtil() {}
81 81
82 // Creates or opens a file with the given flags. 82 // Creates or opens a file with the given flags.
83 // If PLATFORM_FILE_CREATE is set in |file_flags| it always tries to create 83 // If PLATFORM_FILE_CREATE is set in |file_flags| it always tries to create
84 // a new file at the given |url| and calls back with 84 // a new file at the given |url| and calls back with
85 // PLATFORM_FILE_ERROR_FILE_EXISTS if the |url| already exists. 85 // PLATFORM_FILE_ERROR_FILE_EXISTS if the |url| already exists.
86 // 86 //
87 // LocalFileSystemOperation::OpenFile calls this. 87 // FileSystemOperationImpl::OpenFile calls this.
88 // This is used only by Pepper/NaCL File API. 88 // This is used only by Pepper/NaCL File API.
89 // 89 //
90 virtual void CreateOrOpen( 90 virtual void CreateOrOpen(
91 scoped_ptr<FileSystemOperationContext> context, 91 scoped_ptr<FileSystemOperationContext> context,
92 const FileSystemURL& url, 92 const FileSystemURL& url,
93 int file_flags, 93 int file_flags,
94 const CreateOrOpenCallback& callback) = 0; 94 const CreateOrOpenCallback& callback) = 0;
95 95
96 // Ensures that the given |url| exist. This creates a empty new file 96 // Ensures that the given |url| exist. This creates a empty new file
97 // at |url| if the |url| does not exist. 97 // at |url| if the |url| does not exist.
98 // 98 //
99 // LocalFileSystemOperation::CreateFile calls this. 99 // FileSystemOperationImpl::CreateFile calls this.
100 // 100 //
101 // This reports following error code via |callback|: 101 // This reports following error code via |callback|:
102 // - PLATFORM_FILE_OK and created==true if a file has not existed and 102 // - PLATFORM_FILE_OK and created==true if a file has not existed and
103 // is created at |url|. 103 // is created at |url|.
104 // - PLATFORM_FILE_OK and created==false if the file already exists. 104 // - PLATFORM_FILE_OK and created==false if the file already exists.
105 // - Other error code (with created=false) if a file hasn't existed yet 105 // - Other error code (with created=false) if a file hasn't existed yet
106 // and there was an error while creating a new file. 106 // and there was an error while creating a new file.
107 // 107 //
108 virtual void EnsureFileExists( 108 virtual void EnsureFileExists(
109 scoped_ptr<FileSystemOperationContext> context, 109 scoped_ptr<FileSystemOperationContext> context,
110 const FileSystemURL& url, 110 const FileSystemURL& url,
111 const EnsureFileExistsCallback& callback) = 0; 111 const EnsureFileExistsCallback& callback) = 0;
112 112
113 // Creates directory at given url. 113 // Creates directory at given url.
114 // 114 //
115 // LocalFileSystemOperation::CreateDirectory calls this. 115 // FileSystemOperationImpl::CreateDirectory calls this.
116 // 116 //
117 // This reports following error code via |callback|: 117 // This reports following error code via |callback|:
118 // - PLATFORM_FILE_ERROR_NOT_FOUND if the |url|'s parent directory 118 // - PLATFORM_FILE_ERROR_NOT_FOUND if the |url|'s parent directory
119 // does not exist and |recursive| is false. 119 // does not exist and |recursive| is false.
120 // - PLATFORM_FILE_ERROR_EXISTS if a directory already exists at |url| 120 // - PLATFORM_FILE_ERROR_EXISTS if a directory already exists at |url|
121 // and |exclusive| is true. 121 // and |exclusive| is true.
122 // - PLATFORM_FILE_ERROR_EXISTS if a file already exists at |url| 122 // - PLATFORM_FILE_ERROR_EXISTS if a file already exists at |url|
123 // (regardless of |exclusive| value). 123 // (regardless of |exclusive| value).
124 // - Other error code if it failed to create a directory. 124 // - Other error code if it failed to create a directory.
125 // 125 //
126 virtual void CreateDirectory( 126 virtual void CreateDirectory(
127 scoped_ptr<FileSystemOperationContext> context, 127 scoped_ptr<FileSystemOperationContext> context,
128 const FileSystemURL& url, 128 const FileSystemURL& url,
129 bool exclusive, 129 bool exclusive,
130 bool recursive, 130 bool recursive,
131 const StatusCallback& callback) = 0; 131 const StatusCallback& callback) = 0;
132 132
133 // Retrieves the information about a file. 133 // Retrieves the information about a file.
134 // 134 //
135 // LocalFileSystemOperation::GetMetadata calls this. 135 // FileSystemOperationImpl::GetMetadata calls this.
136 // 136 //
137 // This reports following error code via |callback|: 137 // This reports following error code via |callback|:
138 // - PLATFORM_FILE_ERROR_NOT_FOUND if the file doesn't exist. 138 // - PLATFORM_FILE_ERROR_NOT_FOUND if the file doesn't exist.
139 // - Other error code if there was an error while retrieving the file info. 139 // - Other error code if there was an error while retrieving the file info.
140 // 140 //
141 virtual void GetFileInfo( 141 virtual void GetFileInfo(
142 scoped_ptr<FileSystemOperationContext> context, 142 scoped_ptr<FileSystemOperationContext> context,
143 const FileSystemURL& url, 143 const FileSystemURL& url,
144 const GetFileInfoCallback& callback) = 0; 144 const GetFileInfoCallback& callback) = 0;
145 145
146 // Reads contents of a directory at |path|. 146 // Reads contents of a directory at |path|.
147 // 147 //
148 // LocalFileSystemOperation::ReadDirectory calls this. 148 // FileSystemOperationImpl::ReadDirectory calls this.
149 // 149 //
150 // Note that the |name| field of each entry in |file_list| 150 // Note that the |name| field of each entry in |file_list|
151 // returned by |callback| should have a base file name 151 // returned by |callback| should have a base file name
152 // of the entry relative to the directory, but not an absolute path. 152 // of the entry relative to the directory, but not an absolute path.
153 // 153 //
154 // (E.g. if ReadDirectory is called for a directory 154 // (E.g. if ReadDirectory is called for a directory
155 // 'path/to/dir' and the directory has entries 'a' and 'b', 155 // 'path/to/dir' and the directory has entries 'a' and 'b',
156 // the returned |file_list| should include entries whose names 156 // the returned |file_list| should include entries whose names
157 // are 'a' and 'b', but not '/path/to/dir/a' and '/path/to/dir/b'.) 157 // are 'a' and 'b', but not '/path/to/dir/a' and '/path/to/dir/b'.)
158 // 158 //
159 // This reports following error code via |callback|: 159 // This reports following error code via |callback|:
160 // - PLATFORM_FILE_ERROR_NOT_FOUND if the target directory doesn't exist. 160 // - PLATFORM_FILE_ERROR_NOT_FOUND if the target directory doesn't exist.
161 // - PLATFORM_FILE_ERROR_NOT_A_DIRECTORY if an entry exists at |url| but 161 // - PLATFORM_FILE_ERROR_NOT_A_DIRECTORY if an entry exists at |url| but
162 // is a file (not a directory). 162 // is a file (not a directory).
163 // 163 //
164 virtual void ReadDirectory( 164 virtual void ReadDirectory(
165 scoped_ptr<FileSystemOperationContext> context, 165 scoped_ptr<FileSystemOperationContext> context,
166 const FileSystemURL& url, 166 const FileSystemURL& url,
167 const ReadDirectoryCallback& callback) = 0; 167 const ReadDirectoryCallback& callback) = 0;
168 168
169 // Modifies timestamps of a file or directory at |url| with 169 // Modifies timestamps of a file or directory at |url| with
170 // |last_access_time| and |last_modified_time|. The function DOES NOT 170 // |last_access_time| and |last_modified_time|. The function DOES NOT
171 // create a file unlike 'touch' command on Linux. 171 // create a file unlike 'touch' command on Linux.
172 // 172 //
173 // LocalFileSystemOperation::TouchFile calls this. 173 // FileSystemOperationImpl::TouchFile calls this.
174 // This is used only by Pepper/NaCL File API. 174 // This is used only by Pepper/NaCL File API.
175 // 175 //
176 virtual void Touch( 176 virtual void Touch(
177 scoped_ptr<FileSystemOperationContext> context, 177 scoped_ptr<FileSystemOperationContext> context,
178 const FileSystemURL& url, 178 const FileSystemURL& url,
179 const base::Time& last_access_time, 179 const base::Time& last_access_time,
180 const base::Time& last_modified_time, 180 const base::Time& last_modified_time,
181 const StatusCallback& callback) = 0; 181 const StatusCallback& callback) = 0;
182 182
183 // Truncates a file at |path| to |length|. If |length| is larger than 183 // Truncates a file at |path| to |length|. If |length| is larger than
184 // the original file size, the file will be extended, and the extended 184 // the original file size, the file will be extended, and the extended
185 // part is filled with null bytes. 185 // part is filled with null bytes.
186 // 186 //
187 // LocalFileSystemOperation::Truncate calls this. 187 // FileSystemOperationImpl::Truncate calls this.
188 // 188 //
189 // This reports following error code via |callback|: 189 // This reports following error code via |callback|:
190 // - PLATFORM_FILE_ERROR_NOT_FOUND if the file doesn't exist. 190 // - PLATFORM_FILE_ERROR_NOT_FOUND if the file doesn't exist.
191 // 191 //
192 virtual void Truncate( 192 virtual void Truncate(
193 scoped_ptr<FileSystemOperationContext> context, 193 scoped_ptr<FileSystemOperationContext> context,
194 const FileSystemURL& url, 194 const FileSystemURL& url,
195 int64 length, 195 int64 length,
196 const StatusCallback& callback) = 0; 196 const StatusCallback& callback) = 0;
197 197
198 // Copies a file from |src_url| to |dest_url|. 198 // Copies a file from |src_url| to |dest_url|.
199 // This must be called for files that belong to the same filesystem 199 // This must be called for files that belong to the same filesystem
200 // (i.e. type() and origin() of the |src_url| and |dest_url| must match). 200 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
201 // 201 //
202 // LocalFileSystemOperation::Copy calls this for same-filesystem copy case. 202 // FileSystemOperationImpl::Copy calls this for same-filesystem copy case.
203 // 203 //
204 // This reports following error code via |callback|: 204 // This reports following error code via |callback|:
205 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url| 205 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
206 // or the parent directory of |dest_url| does not exist. 206 // or the parent directory of |dest_url| does not exist.
207 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file. 207 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
208 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and 208 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
209 // is not a file. 209 // is not a file.
210 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and 210 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
211 // its parent path is a file. 211 // its parent path is a file.
212 // 212 //
213 virtual void CopyFileLocal( 213 virtual void CopyFileLocal(
214 scoped_ptr<FileSystemOperationContext> context, 214 scoped_ptr<FileSystemOperationContext> context,
215 const FileSystemURL& src_url, 215 const FileSystemURL& src_url,
216 const FileSystemURL& dest_url, 216 const FileSystemURL& dest_url,
217 const StatusCallback& callback) = 0; 217 const StatusCallback& callback) = 0;
218 218
219 // Moves a local file from |src_url| to |dest_url|. 219 // Moves a local file from |src_url| to |dest_url|.
220 // This must be called for files that belong to the same filesystem 220 // This must be called for files that belong to the same filesystem
221 // (i.e. type() and origin() of the |src_url| and |dest_url| must match). 221 // (i.e. type() and origin() of the |src_url| and |dest_url| must match).
222 // 222 //
223 // LocalFileSystemOperation::Move calls this for same-filesystem move case. 223 // FileSystemOperationImpl::Move calls this for same-filesystem move case.
224 // 224 //
225 // This reports following error code via |callback|: 225 // This reports following error code via |callback|:
226 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url| 226 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_url|
227 // or the parent directory of |dest_url| does not exist. 227 // or the parent directory of |dest_url| does not exist.
228 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file. 228 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |src_url| exists but is not a file.
229 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and 229 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
230 // is not a file. 230 // is not a file.
231 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and 231 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
232 // its parent path is a file. 232 // its parent path is a file.
233 // 233 //
234 virtual void MoveFileLocal( 234 virtual void MoveFileLocal(
235 scoped_ptr<FileSystemOperationContext> context, 235 scoped_ptr<FileSystemOperationContext> context,
236 const FileSystemURL& src_url, 236 const FileSystemURL& src_url,
237 const FileSystemURL& dest_url, 237 const FileSystemURL& dest_url,
238 const StatusCallback& callback) = 0; 238 const StatusCallback& callback) = 0;
239 239
240 // Copies in a single file from a different filesystem. 240 // Copies in a single file from a different filesystem.
241 // 241 //
242 // LocalFileSystemOperation::Copy or Move calls this for cross-filesystem 242 // FileSystemOperationImpl::Copy or Move calls this for cross-filesystem
243 // cases. 243 // cases.
244 // 244 //
245 // This reports following error code via |callback|: 245 // This reports following error code via |callback|:
246 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_file_path| 246 // - PLATFORM_FILE_ERROR_NOT_FOUND if |src_file_path|
247 // or the parent directory of |dest_url| does not exist. 247 // or the parent directory of |dest_url| does not exist.
248 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and 248 // - PLATFORM_FILE_ERROR_INVALID_OPERATION if |dest_url| exists and
249 // is not a file. 249 // is not a file.
250 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and 250 // - PLATFORM_FILE_ERROR_FAILED if |dest_url| does not exist and
251 // its parent path is a file. 251 // its parent path is a file.
252 // 252 //
253 virtual void CopyInForeignFile( 253 virtual void CopyInForeignFile(
254 scoped_ptr<FileSystemOperationContext> context, 254 scoped_ptr<FileSystemOperationContext> context,
255 const base::FilePath& src_file_path, 255 const base::FilePath& src_file_path,
256 const FileSystemURL& dest_url, 256 const FileSystemURL& dest_url,
257 const StatusCallback& callback) = 0; 257 const StatusCallback& callback) = 0;
258 258
259 // Deletes a single file. 259 // Deletes a single file.
260 // 260 //
261 // LocalFileSystemOperation::RemoveFile calls this. 261 // FileSystemOperationImpl::RemoveFile calls this.
262 // 262 //
263 // This reports following error code via |callback|: 263 // This reports following error code via |callback|:
264 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist. 264 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist.
265 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |url| is not a file. 265 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |url| is not a file.
266 // 266 //
267 virtual void DeleteFile( 267 virtual void DeleteFile(
268 scoped_ptr<FileSystemOperationContext> context, 268 scoped_ptr<FileSystemOperationContext> context,
269 const FileSystemURL& url, 269 const FileSystemURL& url,
270 const StatusCallback& callback) = 0; 270 const StatusCallback& callback) = 0;
271 271
272 // Removes a single empty directory. 272 // Removes a single empty directory.
273 // 273 //
274 // LocalFileSystemOperation::RemoveDirectory calls this. 274 // FileSystemOperationImpl::RemoveDirectory calls this.
275 // 275 //
276 // This reports following error code via |callback|: 276 // This reports following error code via |callback|:
277 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist. 277 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist.
278 // - PLATFORM_FILE_ERROR_NOT_A_DIRECTORY if |url| is not a directory. 278 // - PLATFORM_FILE_ERROR_NOT_A_DIRECTORY if |url| is not a directory.
279 // - PLATFORM_FILE_ERROR_NOT_EMPTY if |url| is not empty. 279 // - PLATFORM_FILE_ERROR_NOT_EMPTY if |url| is not empty.
280 // 280 //
281 virtual void DeleteDirectory( 281 virtual void DeleteDirectory(
282 scoped_ptr<FileSystemOperationContext> context, 282 scoped_ptr<FileSystemOperationContext> context,
283 const FileSystemURL& url, 283 const FileSystemURL& url,
284 const StatusCallback& callback) = 0; 284 const StatusCallback& callback) = 0;
285 285
286 // Removes a single file or a single directory with its contents 286 // Removes a single file or a single directory with its contents
287 // (i.e. files/subdirectories under the directory). 287 // (i.e. files/subdirectories under the directory).
288 // 288 //
289 // LocalFileSystemOperation::Remove calls this. 289 // FileSystemOperationImpl::Remove calls this.
290 // On some platforms, such as Chrome OS Drive File System, recursive file 290 // On some platforms, such as Chrome OS Drive File System, recursive file
291 // deletion can be implemented more efficiently than calling DeleteFile() and 291 // deletion can be implemented more efficiently than calling DeleteFile() and
292 // DeleteDirectory() for each files/directories. 292 // DeleteDirectory() for each files/directories.
293 // This method is optional, so if not supported, 293 // This method is optional, so if not supported,
294 // PLATFORM_ERROR_INVALID_OPERATION should be returned via |callback|. 294 // PLATFORM_ERROR_INVALID_OPERATION should be returned via |callback|.
295 // 295 //
296 // This reports following error code via |callback|: 296 // This reports following error code via |callback|:
297 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist. 297 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist.
298 // - PLATFORM_ERROR_INVALID_OPERATION if this operation is not supported. 298 // - PLATFORM_ERROR_INVALID_OPERATION if this operation is not supported.
299 virtual void DeleteRecursively( 299 virtual void DeleteRecursively(
(...skipping 16 matching lines...) Expand all
316 // the implementor's FileSystem, the implementor must create a 316 // the implementor's FileSystem, the implementor must create a
317 // local snapshot file and return the path of the created file. 317 // local snapshot file and return the path of the created file.
318 // 318 //
319 // If implementors creates a temporary file for snapshotting and wants 319 // If implementors creates a temporary file for snapshotting and wants
320 // FileAPI backend to take care of the lifetime of the file (so that 320 // FileAPI backend to take care of the lifetime of the file (so that
321 // it won't get deleted while JS layer has any references to the created 321 // it won't get deleted while JS layer has any references to the created
322 // File/Blob object), it should return non-empty |file_ref|. 322 // File/Blob object), it should return non-empty |file_ref|.
323 // Via the |file_ref| implementors can schedule a file deletion 323 // Via the |file_ref| implementors can schedule a file deletion
324 // or arbitrary callbacks when the last reference of File/Blob is dropped. 324 // or arbitrary callbacks when the last reference of File/Blob is dropped.
325 // 325 //
326 // LocalFileSystemOperation::CreateSnapshotFile calls this. 326 // FileSystemOperationImpl::CreateSnapshotFile calls this.
327 // 327 //
328 // This reports following error code via |callback|: 328 // This reports following error code via |callback|:
329 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist. 329 // - PLATFORM_FILE_ERROR_NOT_FOUND if |url| does not exist.
330 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |url| exists but is a directory. 330 // - PLATFORM_FILE_ERROR_NOT_A_FILE if |url| exists but is a directory.
331 // 331 //
332 // The field values of |file_info| are undefined (implementation 332 // The field values of |file_info| are undefined (implementation
333 // dependent) in error cases, and the caller should always 333 // dependent) in error cases, and the caller should always
334 // check the return code. 334 // check the return code.
335 virtual void CreateSnapshotFile( 335 virtual void CreateSnapshotFile(
336 scoped_ptr<FileSystemOperationContext> context, 336 scoped_ptr<FileSystemOperationContext> context,
337 const FileSystemURL& url, 337 const FileSystemURL& url,
338 const CreateSnapshotFileCallback& callback) = 0; 338 const CreateSnapshotFileCallback& callback) = 0;
339 339
340 private: 340 private:
341 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil); 341 DISALLOW_COPY_AND_ASSIGN(AsyncFileUtil);
342 }; 342 };
343 343
344 } // namespace fileapi 344 } // namespace fileapi
345 345
346 #endif // WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_ 346 #endif // WEBKIT_BROWSER_FILEAPI_ASYNC_FILE_UTIL_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | webkit/browser/fileapi/file_system_operation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698