diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 22:47:11 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 22:47:11 +0000 |
commit | 0bb17f3457fc494b9711ce6580571c1bc7dacf57 (patch) | |
tree | f5ce47ae31942fce886a45d36ede9b5de357c14e /chrome/browser/browser_window.h | |
parent | 02525bc37fe1722c8b38af1d6087bf286e075bf9 (diff) | |
download | chromium_src-0bb17f3457fc494b9711ce6580571c1bc7dacf57.zip chromium_src-0bb17f3457fc494b9711ce6580571c1bc7dacf57.tar.gz chromium_src-0bb17f3457fc494b9711ce6580571c1bc7dacf57.tar.bz2 |
Gtk confirm form resubmission dialog.
Refactor so that the dialog is shown by calling BrowserWindow::ShowRepostFormWarningDialog
BUG=19761
TEST=see bug
Review URL: http://codereview.chromium.org/174294
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24826 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index a1dbe76..2532d4b 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -15,6 +15,7 @@ class FindBar; class GURL; class HtmlDialogUIDelegate; class LocationBar; +class NavigationController; class Profile; class StatusBubble; class TabContents; @@ -187,6 +188,9 @@ class BrowserWindow { // Shows the New Profile dialog box. virtual void ShowNewProfileDialog() = 0; + // Shows the repost form confirmation dialog box. + virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) = 0; + // Shows the confirmation dialog box warning that the browser is closing with // in-progress downloads. // This method should call Browser::InProgressDownloadResponse once the user |