forked from chromiumembedded/cef
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chrome: Fix assertion when clicking the incognito profile button (see…
… issue chromiumembedded#2969) Profile::IsIncognitoProfile() currently returns false for CEF incognito profiles because they are not the primary OTR profile. At the same time, we don't necessarily want IsIncognitoProfile() to return true for CEF profiles because, among other things, that causes the BrowserView to apply the dark toolbar theme. Instead, this change updates ProfileMenu expectations to support the CEF incognito profiles without otherwise modifying the incognito behavior. Note that the IsIncognitoProfile() implementation has recently changed in https://crrev.com/7bf6eb2497 and the conclusions in this commit will likely need to be revisited in an upcoming Chromium update.
- Loading branch information
1 parent
10b7a44
commit d98971f
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
diff --git chrome/browser/profiles/profile_window.cc chrome/browser/profiles/profile_window.cc | ||
index 691ac8eea4fd..eda2d1c1f224 100644 | ||
--- chrome/browser/profiles/profile_window.cc | ||
+++ chrome/browser/profiles/profile_window.cc | ||
@@ -335,7 +335,9 @@ void BubbleViewModeFromAvatarBubbleMode(BrowserWindow::AvatarBubbleMode mode, | ||
*bubble_view_mode = BUBBLE_VIEW_MODE_PROFILE_CHOOSER; | ||
return; | ||
case BrowserWindow::AVATAR_BUBBLE_MODE_DEFAULT: | ||
- *bubble_view_mode = profile->IsIncognitoProfile() | ||
+ *bubble_view_mode = profile->IsIncognitoProfile() || | ||
+ (profile->IsOffTheRecord() && | ||
+ profile->GetOTRProfileID().IsUniqueForCEF()) | ||
? profiles::BUBBLE_VIEW_MODE_INCOGNITO | ||
: profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER; | ||
} | ||
diff --git chrome/browser/ui/views/profiles/incognito_menu_view.cc chrome/browser/ui/views/profiles/incognito_menu_view.cc | ||
index f8285d1b6ec1..1f526a44a0b6 100644 | ||
--- chrome/browser/ui/views/profiles/incognito_menu_view.cc | ||
+++ chrome/browser/ui/views/profiles/incognito_menu_view.cc | ||
@@ -37,7 +37,9 @@ | ||
IncognitoMenuView::IncognitoMenuView(views::Button* anchor_button, | ||
Browser* browser) | ||
: ProfileMenuViewBase(anchor_button, browser) { | ||
- DCHECK(browser->profile()->IsIncognitoProfile()); | ||
+ DCHECK(browser->profile()->IsIncognitoProfile() || | ||
+ (browser->profile()->IsOffTheRecord() && | ||
+ browser->profile()->GetOTRProfileID().IsUniqueForCEF())); | ||
GetViewAccessibility().OverrideName(GetAccessibleWindowTitle()); | ||
|
||
chrome::RecordDialogCreation( | ||
diff --git chrome/browser/ui/views/profiles/profile_menu_view_base.cc chrome/browser/ui/views/profiles/profile_menu_view_base.cc | ||
index c35334dea810..e1e9b453462f 100644 | ||
--- chrome/browser/ui/views/profiles/profile_menu_view_base.cc | ||
+++ chrome/browser/ui/views/profiles/profile_menu_view_base.cc | ||
@@ -494,7 +494,9 @@ void ProfileMenuViewBase::ShowBubble( | ||
ProfileMenuViewBase* bubble; | ||
|
||
if (view_mode == profiles::BUBBLE_VIEW_MODE_INCOGNITO) { | ||
- DCHECK(browser->profile()->IsIncognitoProfile()); | ||
+ DCHECK(browser->profile()->IsIncognitoProfile() || | ||
+ (browser->profile()->IsOffTheRecord() && | ||
+ browser->profile()->GetOTRProfileID().IsUniqueForCEF())); | ||
bubble = new IncognitoMenuView(anchor_button, browser); | ||
} else { | ||
DCHECK_EQ(profiles::BUBBLE_VIEW_MODE_PROFILE_CHOOSER, view_mode); |