Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: remoting/host/branding.cc

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/branding.h ('k') | remoting/host/config_file_watcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/branding.cc
diff --git a/remoting/host/branding.cc b/remoting/host/branding.cc
index c0498546e915ccfa18437a5e4c52d305e11d726c..908d9bc96689a83672ab47d8286621e0519b2692 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);
« no previous file with comments | « remoting/host/branding.h ('k') | remoting/host/config_file_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698