OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/browser_dialogs.h" | 5 #include "chrome/browser/ui/browser_dialogs.h" |
6 | 6 |
7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h" | 7 #include "chrome/browser/ui/bookmarks/bookmark_bubble_sign_in_delegate.h" |
8 #include "chrome/browser/ui/browser.h" | 8 #include "chrome/browser/ui/browser.h" |
9 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" | 9 #include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h" |
10 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h
" | 10 #include "chrome/browser/ui/views/website_settings/website_settings_popup_view.h
" |
(...skipping 17 matching lines...) Expand all Loading... |
28 security_info); | 28 security_info); |
29 } | 29 } |
30 | 30 |
31 void ShowBookmarkBubbleViewsAtPoint(const gfx::Point& anchor_point, | 31 void ShowBookmarkBubbleViewsAtPoint(const gfx::Point& anchor_point, |
32 gfx::NativeView parent, | 32 gfx::NativeView parent, |
33 bookmarks::BookmarkBubbleObserver* observer, | 33 bookmarks::BookmarkBubbleObserver* observer, |
34 Browser* browser, | 34 Browser* browser, |
35 const GURL& url, | 35 const GURL& url, |
36 bool already_bookmarked) { | 36 bool already_bookmarked) { |
37 // The Views dialog may prompt for sign in. | 37 // The Views dialog may prompt for sign in. |
38 scoped_ptr<BookmarkBubbleDelegate> delegate( | 38 scoped_ptr<BubbleSyncPromoDelegate> delegate( |
39 new BookmarkBubbleSignInDelegate(browser)); | 39 new BookmarkBubbleSignInDelegate(browser)); |
40 | 40 |
41 BookmarkBubbleView::ShowBubble(nullptr, gfx::Rect(anchor_point, gfx::Size()), | 41 BookmarkBubbleView::ShowBubble(nullptr, gfx::Rect(anchor_point, gfx::Size()), |
42 parent, observer, delegate.Pass(), | 42 parent, observer, delegate.Pass(), |
43 browser->profile(), url, already_bookmarked); | 43 browser->profile(), url, already_bookmarked); |
44 } | 44 } |
45 | 45 |
46 } // namespace chrome | 46 } // namespace chrome |
OLD | NEW |