Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6036)

Unified Diff: chrome/browser/js_before_unload_handler_win.cc

Issue 63033: Refactor AppModalDialogQueue and move JS Alert boxes into a MVC. (Closed)
Patch Set: whitespace Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/js_before_unload_handler_win.h ('k') | chrome/browser/jsmessage_box_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"";
-}
« no previous file with comments | « chrome/browser/js_before_unload_handler_win.h ('k') | chrome/browser/jsmessage_box_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698