Chromium Code Reviews| Index: chrome/browser/chromeos/file_manager/path_util.cc |
| diff --git a/chrome/browser/chromeos/file_manager/path_util.cc b/chrome/browser/chromeos/file_manager/path_util.cc |
| index 27e02fc2c2dd0becd4f10ec87517c76892613612..522200da93f03ef2e38e08a410104bd3dd9f195c 100644 |
| --- a/chrome/browser/chromeos/file_manager/path_util.cc |
| +++ b/chrome/browser/chromeos/file_manager/path_util.cc |
| @@ -33,8 +33,7 @@ const base::FilePath::CharType kBuggyDriveFolderPath[] = |
| } // namespace |
| base::FilePath GetDownloadsFolderForProfile(Profile* profile) { |
| - if (!base::SysInfo::IsRunningOnChromeOS() && |
| - !chromeos::UserManager::IsMultipleProfilesAllowed()) { |
| + if (!base::SysInfo::IsRunningOnChromeOS()) { |
|
Mr4D (OOO till 08-26)
2014/05/14 16:32:40
Indenting
zel
2014/05/14 17:48:39
Done.
|
| // On the developer run on Linux desktop build, if multiple profiles are |
| // not enabled, use $HOME/Downloads for ease for accessing local files for |
| // debugging. |
| @@ -42,7 +41,6 @@ base::FilePath GetDownloadsFolderForProfile(Profile* profile) { |
| CHECK(PathService::Get(base::DIR_HOME, &path)); |
| return path.AppendASCII(kDownloadsFolderName); |
| } |
| - |
| return profile->GetPath().AppendASCII(kDownloadsFolderName); |
| } |