| Index: chrome/browser/js_before_unload_handler_win.cc
|
| diff --git a/chrome/browser/js_before_unload_handler_win.cc b/chrome/browser/js_before_unload_handler_win.cc
|
| deleted file mode 100644
|
| index f97620dc3b625e452e00680fcc7e6e1cd70f66b0..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/js_before_unload_handler_win.cc
|
| +++ /dev/null
|
| @@ -1,54 +0,0 @@
|
| -// Copyright (c) 2006-2008 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.
|
| -
|
| -#include "chrome/browser/js_before_unload_handler_win.h"
|
| -
|
| -#include "chrome/browser/app_modal_dialog_queue.h"
|
| -#include "chrome/common/l10n_util.h"
|
| -#include "chrome/common/message_box_flags.h"
|
| -#include "grit/generated_resources.h"
|
| -
|
| -void RunBeforeUnloadDialog(WebContents* web_contents,
|
| - const GURL& frame_url,
|
| - const std::wstring& message_text,
|
| - IPC::Message* reply_msg) {
|
| - std::wstring full_message =
|
| - message_text + L"\n\n" +
|
| - l10n_util::GetString(IDS_BEFOREUNLOAD_MESSAGEBOX_FOOTER);
|
| - JavascriptBeforeUnloadHandler* handler =
|
| - new JavascriptBeforeUnloadHandler(web_contents, frame_url, full_message,
|
| - reply_msg);
|
| - AppModalDialogQueue::AddDialog(handler);
|
| -}
|
| -
|
| -// JavascriptBeforeUnloadHandler -----------------------------------------------
|
| -
|
| -JavascriptBeforeUnloadHandler::JavascriptBeforeUnloadHandler(
|
| - WebContents* web_contents,
|
| - const GURL& frame_url,
|
| - const std::wstring& message_text,
|
| - IPC::Message* reply_msg)
|
| - : JavascriptMessageBoxHandler(web_contents,
|
| - frame_url,
|
| - MessageBox::kIsJavascriptConfirm,
|
| - message_text,
|
| - std::wstring(),
|
| - false,
|
| - reply_msg) {
|
| -}
|
| -
|
| -std::wstring JavascriptBeforeUnloadHandler::GetWindowTitle() const {
|
| - return l10n_util::GetString(IDS_BEFOREUNLOAD_MESSAGEBOX_TITLE);
|
| -}
|
| -
|
| -std::wstring JavascriptBeforeUnloadHandler::GetDialogButtonLabel(
|
| - DialogButton button) const {
|
| - if (button == DialogDelegate::DIALOGBUTTON_OK) {
|
| - return l10n_util::GetString(IDS_BEFOREUNLOAD_MESSAGEBOX_OK_BUTTON_LABEL);
|
| - } else if (button == DialogDelegate::DIALOGBUTTON_CANCEL) {
|
| - return l10n_util::GetString(
|
| - IDS_BEFOREUNLOAD_MESSAGEBOX_CANCEL_BUTTON_LABEL);
|
| - }
|
| - return L"";
|
| -}
|
|
|