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

Unified Diff: chrome/browser/chromeos/file_manager/path_util.cc

Issue 271533004: Turning on MultiProfile by default for ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698