| Index: chrome/browser/ui/browser_window.h
|
| diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
|
| index 41b321d71400e6a03284c6701976cf91bee641d7..c9f04e65ce69987ec4e46b4d480fc8485077ee3b 100644
|
| --- a/chrome/browser/ui/browser_window.h
|
| +++ b/chrome/browser/ui/browser_window.h
|
| @@ -23,6 +23,7 @@ class Profile;
|
| class StatusBubble;
|
| class TabContents;
|
| class TabContentsWrapper;
|
| +class TabModalDialogDelegate;
|
| class TemplateURL;
|
| #if !defined(OS_MACOSX)
|
| class ToolbarView;
|
| @@ -239,8 +240,9 @@ class BrowserWindow {
|
| // Returns the DownloadShelf.
|
| virtual DownloadShelf* GetDownloadShelf() = 0;
|
|
|
| - // Shows the repost form confirmation dialog box.
|
| - virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) = 0;
|
| + // Shows a tab-modal dialog.
|
| + virtual void ShowTabModalDialog(TabModalDialogDelegate* delegate,
|
| + TabContents* tab_contents) = 0;
|
|
|
| // Shows the collected cookies dialog box.
|
| virtual void ShowCollectedCookiesDialog(TabContentsWrapper* tab_contents) = 0;
|
|
|