| Index: webkit/fileapi/file_system_file_util_proxy.h
|
| diff --git a/webkit/fileapi/file_system_file_util_proxy.h b/webkit/fileapi/file_system_file_util_proxy.h
|
| index 617dbeadf2d1e87e664138a8cf0ff83c1cfa30e7..29d8a7e2b7249d49fafb0b5547d301e3e6f94f61 100644
|
| --- a/webkit/fileapi/file_system_file_util_proxy.h
|
| +++ b/webkit/fileapi/file_system_file_util_proxy.h
|
| @@ -44,7 +44,7 @@ class FileSystemFileUtilProxy {
|
| typedef FileSystemOperationInterface::ReadDirectoryCallback
|
| ReadDirectoryCallback;
|
|
|
| - // Deletes a file or a directory on the given context's file_task_runner.
|
| + // Deletes a file or a directory on the given context's task_runner.
|
| // It is an error to delete a non-empty directory with recursive=false.
|
| static bool Delete(
|
| FileSystemOperationContext* context,
|
| @@ -54,7 +54,7 @@ class FileSystemFileUtilProxy {
|
| const StatusCallback& callback);
|
|
|
| // Creates or opens a file with the given flags by calling |file_util|'s
|
| - // CreateOrOpen method on the given context's file_task_runner.
|
| + // CreateOrOpen method on the given context's task_runner.
|
| static bool CreateOrOpen(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -64,7 +64,7 @@ class FileSystemFileUtilProxy {
|
|
|
| // Copies a file or a directory from |src_url| to |dest_url| by calling
|
| // FileSystemFileUtil's following methods on the given context's
|
| - // file_task_runner.
|
| + // task_runner.
|
| // - CopyOrMoveFile() for same-filesystem operations
|
| // - CopyInForeignFile() for (limited) cross-filesystem operations
|
| //
|
| @@ -85,7 +85,7 @@ class FileSystemFileUtilProxy {
|
|
|
| // Moves a file or a directory from |src_url| to |dest_url| by calling
|
| // FileSystemFileUtil's following methods on the given context's
|
| - // file_task_runner.
|
| + // task_runner.
|
| // - CopyOrMoveFile() for same-filesystem operations
|
| // - CopyInForeignFile() for (limited) cross-filesystem operations
|
| //
|
| @@ -99,7 +99,7 @@ class FileSystemFileUtilProxy {
|
| const StatusCallback& callback);
|
|
|
| // Ensures that the given |url| exist by calling |file_util|'s
|
| - // EnsureFileExists method on the given context's file_task_runner.
|
| + // EnsureFileExists method on the given context's task_runner.
|
| static bool EnsureFileExists(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -107,7 +107,7 @@ class FileSystemFileUtilProxy {
|
| const EnsureFileExistsCallback& callback);
|
|
|
| // Creates directory at a given url by calling |file_util|'s
|
| - // CreateDirectory method on the given context's file_task_runner.
|
| + // CreateDirectory method on the given context's task_runner.
|
| static bool CreateDirectory(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -117,7 +117,7 @@ class FileSystemFileUtilProxy {
|
| const StatusCallback& callback);
|
|
|
| // Retrieves the information about a file by calling |file_util|'s
|
| - // GetFileInfo method on the given context's file_task_runner.
|
| + // GetFileInfo method on the given context's task_runner.
|
| static bool GetFileInfo(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -125,7 +125,7 @@ class FileSystemFileUtilProxy {
|
| const GetFileInfoCallback& callback);
|
|
|
| // Creates a snapshot file by calling |file_util|'s CreateSnapshotFile
|
| - // method on the given context's file_task_runner.
|
| + // method on the given context's task_runner.
|
| static bool CreateSnapshotFile(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -133,7 +133,7 @@ class FileSystemFileUtilProxy {
|
| const SnapshotFileCallback& callback);
|
|
|
| // Reads the filenames in |url| by calling |file_util|'s
|
| - // ReadDirectory method on the given context's file_task_runner.
|
| + // ReadDirectory method on the given context's task_runner.
|
| // TODO: this should support returning entries in multiple chunks.
|
| static bool ReadDirectory(
|
| FileSystemOperationContext* context,
|
| @@ -142,7 +142,7 @@ class FileSystemFileUtilProxy {
|
| const ReadDirectoryCallback& callback);
|
|
|
| // Touches a file by calling |file_util|'s Touch method
|
| - // on the given context's file_task_runner.
|
| + // on the given context's task_runner.
|
| static bool Touch(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
| @@ -152,7 +152,7 @@ class FileSystemFileUtilProxy {
|
| const StatusCallback& callback);
|
|
|
| // Truncates a file to the given length by calling |file_util|'s
|
| - // Truncate method on the given context's file_task_runner.
|
| + // Truncate method on the given context's task_runner.
|
| static bool Truncate(
|
| FileSystemOperationContext* context,
|
| FileSystemFileUtil* file_util,
|
|
|