| Index: webkit/chromeos/fileapi/remote_file_system_proxy.h
|
| diff --git a/webkit/chromeos/fileapi/remote_file_system_proxy.h b/webkit/chromeos/fileapi/remote_file_system_proxy.h
|
| index 5237e40589c902d41844bcceecd20b9d5a4e55b4..e54a266372b48df4dd721b554ddbbdf6000531b1 100644
|
| --- a/webkit/chromeos/fileapi/remote_file_system_proxy.h
|
| +++ b/webkit/chromeos/fileapi/remote_file_system_proxy.h
|
| @@ -103,7 +103,14 @@ class RemoteFileSystemProxyInterface :
|
| // Notifies that a file opened by OpenFile (at |path|) is closed.
|
| virtual void NotifyCloseFile(const FileSystemURL& url) = 0;
|
|
|
| - // TODO(zelidrag): More methods to follow as we implement other parts of FSO.
|
| + // Modifies the timestamp of a given |url| to |last_access_time| and
|
| + // |last_modified_time|. Note that unlike 'touch' command of Linux, it
|
| + // does not create a new file.
|
| + virtual void TouchFile(
|
| + const fileapi::FileSystemURL& url,
|
| + const base::Time& last_access_time,
|
| + const base::Time& last_modified_time,
|
| + const FileSystemOperation::StatusCallback& callback) = 0;
|
|
|
| protected:
|
| friend class base::RefCountedThreadSafe<RemoteFileSystemProxyInterface>;
|
|
|