Index: base/base_paths_posix.cc |
diff --git a/base/base_paths_posix.cc b/base/base_paths_posix.cc |
index d8d5ae61b7285ab113eb46718610a25e08773bf7..c5a1f48de60b63204f076f031cf89d2439a350e2 100644 |
--- a/base/base_paths_posix.cc |
+++ b/base/base_paths_posix.cc |
@@ -85,12 +85,16 @@ bool PathProviderPosix(int key, FilePath* result) { |
<< "Try running from your chromium/src directory."; |
return false; |
} |
- case base::DIR_CACHE: |
+ case base::DIR_CACHE: { |
scoped_ptr<base::Environment> env(base::Environment::Create()); |
FilePath cache_dir(base::nix::GetXDGDirectory(env.get(), "XDG_CACHE_HOME", |
".cache")); |
*result = cache_dir; |
return true; |
+ } |
+ case base::DIR_HOME: |
jar (doing other things)
2012/07/20 18:02:54
nit: consistently use curlies around the body of t
thorogood
2012/07/21 07:39:22
Done.
|
+ *result = file_util::GetHomeDir(); |
+ return true; |
} |
return false; |
} |