diff options
Diffstat (limited to 'chrome/browser/views/browser_dialogs.h')
-rw-r--r-- | chrome/browser/views/browser_dialogs.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chrome/browser/views/browser_dialogs.h b/chrome/browser/views/browser_dialogs.h index 7884719..dd02f80 100644 --- a/chrome/browser/views/browser_dialogs.h +++ b/chrome/browser/views/browser_dialogs.h @@ -56,6 +56,9 @@ void ShowBookmarkBubbleView(views::Window* parent, void HideBookmarkBubbleView(); bool IsBookmarkBubbleViewShowing(); +// Shows the bookmark manager. +void ShowBookmarkManagerView(Profile* profile); + // Shows the about dialog. See AboutChromeView. void ShowAboutChromeView(views::Widget* parent, Profile* profile); @@ -64,6 +67,19 @@ void ShowAboutChromeView(views::Widget* parent, void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, HtmlDialogUIDelegate* delegate); +// Creates and returns a find bar for the given browser window. See FindBarWin. +FindBar* CreateFindBar(BrowserView* browser_view); + +// Shows the "Save passwords and exceptions" dialog. +// See PasswordsExceptionsWindowView. +void ShowPasswordsExceptionsWindowView(Profile* profile); + +// Shows the keyword editor. See KeywordEditorView. +void ShowKeywordEditorView(Profile* profile); + +// Shows the "new profile" dialog box. See NewProfileDialog. +void ShowNewProfileDialog(); + } // namespace browser #endif // CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ |