summaryrefslogtreecommitdiffstats
path: root/remoting/host/branding.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/branding.cc')
-rw-r--r--remoting/host/branding.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/remoting/host/branding.cc b/remoting/host/branding.cc
index c049854..908d9bc 100644
--- a/remoting/host/branding.cc
+++ b/remoting/host/branding.cc
@@ -16,17 +16,17 @@ namespace {
// command-line switches are absent.
#if defined(OS_WIN)
#ifdef OFFICIAL_BUILD
-const FilePath::CharType kConfigDir[] =
+const base::FilePath::CharType kConfigDir[] =
FILE_PATH_LITERAL("Google\\Chrome Remote Desktop");
#else
-const FilePath::CharType kConfigDir[] =
+const base::FilePath::CharType kConfigDir[] =
FILE_PATH_LITERAL("Chromoting");
#endif
#elif defined(OS_MACOSX)
-const FilePath::CharType kConfigDir[] =
+const base::FilePath::CharType kConfigDir[] =
FILE_PATH_LITERAL("Chrome Remote Desktop");
#else
-const FilePath::CharType kConfigDir[] =
+const base::FilePath::CharType kConfigDir[] =
FILE_PATH_LITERAL(".config/chrome-remote-desktop");
#endif
@@ -38,8 +38,8 @@ namespace remoting {
const wchar_t kWindowsServiceName[] = L"chromoting";
#endif
-FilePath GetConfigDir() {
- FilePath app_data_dir;
+base::FilePath GetConfigDir() {
+ base::FilePath app_data_dir;
#if defined(OS_WIN)
PathService::Get(base::DIR_COMMON_APP_DATA, &app_data_dir);