diff options
Diffstat (limited to 'chrome/browser/external_tab_container_win.cc')
-rw-r--r-- | chrome/browser/external_tab_container_win.cc | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab_container_win.cc index bf504a6..6e309d1 100644 --- a/chrome/browser/external_tab_container_win.cc +++ b/chrome/browser/external_tab_container_win.cc @@ -536,7 +536,7 @@ TabContentsWrapper* ExternalTabContainer::GetConstrainingContentsWrapper( return source; } -bool ExternalTabContainer::IsPopup(const TabContents* source) const { +bool ExternalTabContainer::IsPopupOrPanel(const TabContents* source) const { return is_popup_window_; } @@ -587,26 +587,6 @@ bool ExternalTabContainer::CanDownload(TabContents* source, int request_id) { return false; } -void ExternalTabContainer::ShowPageInfo(Profile* profile, - const GURL& url, - const NavigationEntry::SSLStatus& ssl, - bool show_history) { - POINT cursor_pos = {0}; - GetCursorPos(&cursor_pos); - - gfx::Rect bounds; - bounds.set_origin(gfx::Point(cursor_pos)); - - PageInfoBubbleView* page_info_bubble = - new ExternalTabPageInfoBubbleView(this, NULL, profile, url, - ssl, show_history); - Bubble* bubble = Bubble::Show(GetWidget(), bounds, - views::BubbleBorder::TOP_LEFT, - views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, - page_info_bubble, page_info_bubble); - page_info_bubble->set_bubble(bubble); -} - void ExternalTabContainer::RegisterRenderViewHostForAutomation( RenderViewHost* render_view_host, bool pending_view) { if (render_view_host) { |