| 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..21c91186b0b8347ccb60a96457b0aefbfb13cbe7 100644
|
| --- a/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc
|
| +++ b/chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.cc
|
| @@ -14,8 +14,7 @@
|
|
|
| BookmarkBubbleSignInDelegate::BookmarkBubbleSignInDelegate(Browser* browser)
|
| : browser_(browser),
|
| - profile_(browser->profile()),
|
| - desktop_type_(browser->host_desktop_type()) {
|
| + profile_(browser->profile()) {
|
| BrowserList::AddObserver(this);
|
| }
|
|
|
| @@ -39,8 +38,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_));
|
| + browser_ = new Browser(Browser::CreateParams(original_profile));
|
| }
|
| }
|
| }
|
|
|