From 2bc873488477f2267b634fa85dbc22182e4d1bc3 Mon Sep 17 00:00:00 2001 From: "hidehiko@chromium.org" Date: Thu, 23 May 2013 19:37:34 +0000 Subject: Implement TouchFile on drive::FileSystem. This CL implements FileSystem::TouchFile for PPAPI. The method doesn't run yet in prod, because it is not accessed from FileSystemProxy. It'll be done in a following CL. BUG=144369 TEST=Ran unit_tests Review URL: https://chromiumcodereview.appspot.com/15728006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201860 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/chromeos/drive/file_system.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/chromeos/drive/file_system.cc') diff --git a/chrome/browser/chromeos/drive/file_system.cc b/chrome/browser/chromeos/drive/file_system.cc index e8e2a0e..975fbd5 100644 --- a/chrome/browser/chromeos/drive/file_system.cc +++ b/chrome/browser/chromeos/drive/file_system.cc @@ -420,8 +420,8 @@ void FileSystem::TouchFile(const base::FilePath& file_path, DCHECK(!last_modified_time.is_null()); DCHECK(!callback.is_null()); - // TODO(hidehiko): Implement this (crbug.com/144369). - NOTIMPLEMENTED(); + drive_operations_.TouchFile( + file_path, last_access_time, last_modified_time, callback); } void FileSystem::Pin(const base::FilePath& file_path, -- cgit v1.1