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

Unified Diff: trunk/src/chrome/common/chrome_paths_unittest.cc

Issue 284333002: Revert 270872 "Move all callers of GetHomeDir() to PathService::..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 7 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
Index: trunk/src/chrome/common/chrome_paths_unittest.cc
===================================================================
--- trunk/src/chrome/common/chrome_paths_unittest.cc (revision 270950)
+++ trunk/src/chrome/common/chrome_paths_unittest.cc (working copy)
@@ -6,7 +6,6 @@
#include <stdlib.h>
-#include "base/base_paths.h"
#include "base/file_util.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
@@ -30,8 +29,7 @@
base::FilePath expected_cache_dir;
ASSERT_TRUE(PathService::Get(base::DIR_CACHE, &expected_cache_dir));
#elif(OS_POSIX)
- base::FilePath homedir;
- PathService::Get(base::DIR_HOME, &homedir);
+ base::FilePath homedir = base::GetHomeDir();
// Note: we assume XDG_CACHE_HOME/XDG_CONFIG_HOME are at their
// default settings.
test_profile_dir = homedir.Append(".config/foobar");
« no previous file with comments | « trunk/src/chrome/common/chrome_paths_linux.cc ('k') | trunk/src/chrome/common/importer/firefox_importer_utils_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698