diff options
Diffstat (limited to 'chrome/common/chrome_paths_linux.cc')
-rw-r--r-- | chrome/common/chrome_paths_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_paths_linux.cc b/chrome/common/chrome_paths_linux.cc index e90c2f5..7a71caf 100644 --- a/chrome/common/chrome_paths_linux.cc +++ b/chrome/common/chrome_paths_linux.cc @@ -34,7 +34,7 @@ bool GetUserMediaDirectory(const std::string& xdg_name, #else *result = GetXDGUserDirectory(xdg_name.c_str(), fallback_name.c_str()); - base::FilePath home = file_util::GetHomeDir(); + base::FilePath home = base::GetHomeDir(); if (*result != home) { base::FilePath desktop; if (!PathService::Get(base::DIR_USER_DESKTOP, &desktop)) @@ -116,7 +116,7 @@ bool GetUserDocumentsDirectory(base::FilePath* result) { } bool GetUserDownloadsDirectorySafe(base::FilePath* result) { - base::FilePath home = file_util::GetHomeDir(); + base::FilePath home = base::GetHomeDir(); *result = home.Append(kDownloadsDir); return true; } |