diff options
Diffstat (limited to 'chrome/browser/message_box_handler.h')
-rw-r--r-- | chrome/browser/message_box_handler.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/chrome/browser/message_box_handler.h b/chrome/browser/message_box_handler.h deleted file mode 100644 index e6f08e5..0000000 --- a/chrome/browser/message_box_handler.h +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef CHROME_BROWSER_MESSAGE_BOX_HANDLER_H_ -#define CHROME_BROWSER_MESSAGE_BOX_HANDLER_H_ -#pragma once - -#include <string> - -#include "ipc/ipc_message.h" - -class GURL; -class JavaScriptAppModalDialogDelegate; -class TabContents; -class Profile; - -// Creates and runs a Javascript Message Box dialog. -// The dialog type is specified within |dialog_flags|, the -// default static display text is in |message_text| and if the dialog box is -// a user input prompt() box, the default text for the text field is in -// |default_prompt_text|. The result of the operation is returned using -// |reply_msg|. -void RunJavascriptMessageBox(Profile* profile, - JavaScriptAppModalDialogDelegate* delegate, - const GURL& frame_url, - int dialog_flags, - const std::wstring& message_text, - const std::wstring& default_prompt_text, - bool display_suppress_checkbox, - IPC::Message* reply_msg); - -// This will display a modal dialog box with a header and footer asking the -// the user if they wish to navigate away from a page, with additional text -// |message_text| between the header and footer. The users response is -// returned to the renderer using |reply_msg|. -void RunBeforeUnloadDialog(TabContents* tab_contents, - const std::wstring& message_text, - IPC::Message* reply_msg); - -#endif // CHROME_BROWSER_MESSAGE_BOX_HANDLER_H_ |