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

Unified Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc

Issue 1129293002: Fix the System Profile with extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: and a few fewer unnecessary checks Created 5 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/ui/ash/launcher/chrome_launcher_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
index 0e6b955ca7a33a7ad24c4ca7b359b655f1ffe04c..9168bbd58a0a8e6345fe5cb252afd4f998b1336e 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
@@ -375,8 +375,10 @@ ChromeLauncherController::ChromeLauncherController(Profile* profile,
// record profile, unless in guest session (where off the record profile is
msw 2015/05/21 04:34:43 nit/q: Did you mean to use the system profile and
Mike Lerman 2015/05/21 15:27:31 SystemProfile is OTRProfileImpl. There is an origi
msw 2015/05/21 17:48:12 Acknowledged.
// the right one).
Profile* active_profile = ProfileManager::GetActiveUserProfile();
- profile_ = active_profile->IsGuestSession() ? active_profile :
- active_profile->GetOriginalProfile();
+ profile_ =
msw 2015/05/21 04:34:43 nit: consider: profile_ = ProfileManager::GetAct
Mike Lerman 2015/05/21 15:27:31 Done.
+ active_profile->IsGuestSession() || active_profile->IsSystemProfile()
+ ? active_profile
+ : active_profile->GetOriginalProfile();
app_sync_ui_state_ = AppSyncUIState::Get(profile_);
if (app_sync_ui_state_)
@@ -2052,7 +2054,8 @@ bool ChromeLauncherController::IsIncognito(
const content::WebContents* web_contents) const {
const Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
- return profile->IsOffTheRecord() && !profile->IsGuestSession();
+ return profile->IsOffTheRecord() && !profile->IsGuestSession() &&
+ !profile->IsSystemProfile();
msw 2015/05/21 04:34:43 nit: should this only be indented 4 spaces without
Mike Lerman 2015/05/21 15:27:31 I tried it your way, but apparently not - I did th
msw 2015/05/21 17:48:12 Acknowledged.
}
void ChromeLauncherController::CloseWindowedAppsFromRemovedExtension(

Powered by Google App Engine
This is Rietveld 408576698