Chromium Code Reviews| Index: chrome/common/chrome_paths_android.cc |
| diff --git a/chrome/common/chrome_paths_android.cc b/chrome/common/chrome_paths_android.cc |
| index bc5c924d8ca19e279493a5c0f2539060409c589a..39c66687df0d63ee046bd5fa4c78fd93bf0ccdcc 100644 |
| --- a/chrome/common/chrome_paths_android.cc |
| +++ b/chrome/common/chrome_paths_android.cc |
| @@ -13,6 +13,7 @@ namespace chrome { |
| void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result) { |
| if (!PathService::Get(base::DIR_CACHE, result)) |
| *result = profile_dir; |
| + |
|
Jói
2012/08/02 15:20:00
This blank line looks like it was introduced accid
Torne
2012/08/03 10:31:36
Done.
|
| } |
| bool GetDefaultUserDataDirectory(FilePath* result) { |
| @@ -43,4 +44,9 @@ bool GetUserDesktop(FilePath* result) { |
| return false; |
| } |
| +bool ProcessNeedsProfileDir(const std::string& process_type) { |
| + // For now we have no reason to forbid this on Android. |
| + return true; |
| +} |
| + |
| } // namespace chrome |