| Index: chrome/browser/ui/views/browser_dialogs.h
|
| diff --git a/chrome/browser/ui/views/browser_dialogs.h b/chrome/browser/ui/views/browser_dialogs.h
|
| index 2d3492ca90ab5e19b49595461d892e5751b773e8..af21b2c957d1ed43cdb9399185e97fc569763649 100644
|
| --- a/chrome/browser/ui/views/browser_dialogs.h
|
| +++ b/chrome/browser/ui/views/browser_dialogs.h
|
| @@ -8,6 +8,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "content/browser/tab_contents/navigation_entry.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| // This file contains functions for running a variety of browser dialogs and
|
| @@ -38,7 +39,7 @@ class Widget;
|
|
|
| namespace browser {
|
|
|
| -// Shows or hides the global bookmark bubble for the star button.
|
| +// Shows or hides the bookmark bubble anchored to the supplied view.
|
| void ShowBookmarkBubbleView(views::View* anchor_view,
|
| Profile* profile,
|
| const GURL& url,
|
| @@ -46,6 +47,13 @@ void ShowBookmarkBubbleView(views::View* anchor_view,
|
| void HideBookmarkBubbleView();
|
| bool IsBookmarkBubbleViewShowing();
|
|
|
| +// Shows the page info bubble anchored to the supplied view.
|
| +void ShowPageInfoBubble(views::View* anchor_view,
|
| + Profile* profile,
|
| + const GURL& url,
|
| + const NavigationEntry::SSLStatus& ssl,
|
| + bool show_history);
|
| +
|
| // Shows the about dialog. See AboutChromeView.
|
| views::Widget* ShowAboutChromeView(gfx::NativeWindow parent,
|
| Profile* profile);
|
|
|