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

Unified Diff: chrome/browser/file_system/file_system_dispatcher_host.h

Issue 3417018: Adding a TouchFile() operation. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 3 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
« no previous file with comments | « no previous file | chrome/browser/file_system/file_system_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/file_system/file_system_dispatcher_host.h
===================================================================
--- chrome/browser/file_system/file_system_dispatcher_host.h (revision 60236)
+++ chrome/browser/file_system/file_system_dispatcher_host.h (working copy)
@@ -16,6 +16,10 @@
#include "chrome/common/render_messages.h"
#include "webkit/fileapi/file_system_operation.h"
+namespace base {
+class Time;
+}
+
class FileSystemHostContext;
class HostContentSettingsMap;
class Receiver;
@@ -49,6 +53,10 @@
bool recursive);
void OnExists(int request_id, const FilePath& path, bool is_directory);
void OnReadDirectory(int request_id, const FilePath& path);
+ void OnTouchFile(int request_id,
+ const FilePath& path,
+ const base::Time& last_access_time,
+ const base::Time& last_modified_time);
void Send(IPC::Message* message);
void RemoveCompletedOperation(int request_id);
« no previous file with comments | « no previous file | chrome/browser/file_system/file_system_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698