diff options
Diffstat (limited to 'base/file_util_android.cc')
-rw-r--r-- | base/file_util_android.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/file_util_android.cc b/base/file_util_android.cc index 6ac9def..def4d7c 100644 --- a/base/file_util_android.cc +++ b/base/file_util_android.cc @@ -7,10 +7,10 @@ #include "base/files/file_path.h" #include "base/path_service.h" -namespace file_util { +namespace base { -bool GetShmemTempDir(base::FilePath* path, bool executable) { +bool GetShmemTempDir(bool executable, base::FilePath* path) { return PathService::Get(base::DIR_CACHE, path); } -} // namespace file_util +} // namespace base |