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..c43a4160a2cd558672528fcac0b70990838f52f1 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()) { |
| // On the developer run on Linux desktop build, if multiple profiles are |
|
Nikita (slow)
2014/05/14 20:10:16
nit: drop multi-profiles mention
zel
2014/05/14 21:17:57
Done.
|
| // 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); |
| } |