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

Unified Diff: base/files/file_util_proxy.cc

Issue 100453006: Move Touch to base namespace, remove SetLastModifiedTime. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
Index: base/files/file_util_proxy.cc
diff --git a/base/files/file_util_proxy.cc b/base/files/file_util_proxy.cc
index eefb7a19be08a61bff27f12a090100c27c2f49cf..6d211ae1738fdac1507e3d2fd80e1334bd76e3be 100644
--- a/base/files/file_util_proxy.cc
+++ b/base/files/file_util_proxy.cc
@@ -357,8 +357,7 @@ bool FileUtilProxy::Touch(
return base::PostTaskAndReplyWithResult(
task_runner,
FROM_HERE,
- Bind(&file_util::TouchFile, file_path,
- last_access_time, last_modified_time),
+ Bind(&base::TouchFile, file_path, last_access_time, last_modified_time),
viettrungluu 2013/12/04 21:09:23 nit: you're already in the base namespace (ditto f
brettw 2013/12/04 21:38:17 I'll get around to removing base from this file. I
Bind(&CallWithTranslatedParameter, callback));
}

Powered by Google App Engine
This is Rietveld 408576698