Chromium Code Reviews| 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)); |
| } |