summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/chrome_paths_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/chrome_paths_linux.cc')
-rw-r--r--chromium/chrome/common/chrome_paths_linux.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/chrome/common/chrome_paths_linux.cc b/chromium/chrome/common/chrome_paths_linux.cc
index fc47bd3f124..5659ef5d6f9 100644
--- a/chromium/chrome/common/chrome_paths_linux.cc
+++ b/chromium/chrome/common/chrome_paths_linux.cc
@@ -41,10 +41,10 @@ bool GetUserMediaDirectory(const std::string& xdg_name,
*result = GetXDGUserDirectory(xdg_name.c_str(), fallback_name.c_str());
base::FilePath home;
- PathService::Get(base::DIR_HOME, &home);
+ base::PathService::Get(base::DIR_HOME, &home);
if (*result != home) {
base::FilePath desktop;
- if (!PathService::Get(base::DIR_USER_DESKTOP, &desktop))
+ if (!base::PathService::Get(base::DIR_USER_DESKTOP, &desktop))
return false;
if (*result != desktop) {
return true;
@@ -111,7 +111,7 @@ void GetUserCacheDirectory(const base::FilePath& profile_dir,
std::unique_ptr<base::Environment> env(base::Environment::Create());
base::FilePath cache_dir;
- if (!PathService::Get(base::DIR_CACHE, &cache_dir))
+ if (!base::PathService::Get(base::DIR_CACHE, &cache_dir))
return;
base::FilePath config_dir(GetXDGDirectory(env.get(),
kXdgConfigHomeEnvVar,
@@ -130,7 +130,7 @@ bool GetUserDocumentsDirectory(base::FilePath* result) {
bool GetUserDownloadsDirectorySafe(base::FilePath* result) {
base::FilePath home;
- PathService::Get(base::DIR_HOME, &home);
+ base::PathService::Get(base::DIR_HOME, &home);
*result = home.Append(kDownloadsDir);
return true;
}