diff options
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index d11db56..2c558aa 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -12,11 +12,13 @@ class BrowserWindowTesting; class DownloadShelf; class FindBar; class GURL; -class LocationBar; class HtmlDialogUIDelegate; +class LocationBar; +class Profile; class StatusBubble; class TabContents; class TabContentsContainer; +class TemplateURL; namespace gfx { class Rect; @@ -129,6 +131,11 @@ class BrowserWindow { // provided here since the functionality is Windows-specific. virtual void DisableInactiveFrame() {} + // Shows a confirmation dialog box for adding a search engine described by + // |template_url|. + virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, + Profile* profile) = 0; + // Shows or hides the bookmark bar depending on its current visibility. virtual void ToggleBookmarkBar() = 0; |