Chromium Code Reviews| Index: chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc |
| diff --git a/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc b/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc |
| index f64655ba7ed91aca3cbbb04030ab5c21862ef3c5..96da32b8c20c807667410e18ae62b6b6f3d0078d 100644 |
| --- a/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc |
| +++ b/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc |
| @@ -39,8 +39,7 @@ void BookmarkBubbleSignInDelegate::EnsureBrowser() { |
| Profile* original_profile = profile_->GetOriginalProfile(); |
| browser_ = chrome::FindLastActiveWithProfile(original_profile); |
| if (!browser_) { |
| - browser_ = new Browser(Browser::CreateParams(original_profile, |
| - desktop_type_)); |
|
sky
2016/02/08 17:28:05
Can you remove the desktop_type_ member?
scottmg
2016/02/09 18:13:14
Done.
|
| + browser_ = new Browser(Browser::CreateParams(original_profile)); |
| } |
| } |
| } |