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

Unified Diff: components/app_modal_dialogs/views/javascript_app_modal_dialog_views.cc

Issue 735473002: Rename app_modal_dialogs dir to app_modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase Created 6 years, 1 month 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
Index: components/app_modal_dialogs/views/javascript_app_modal_dialog_views.cc
diff --git a/components/app_modal_dialogs/views/javascript_app_modal_dialog_views.cc b/components/app_modal_dialogs/views/javascript_app_modal_dialog_views.cc
deleted file mode 100644
index 72e0fa2d8ad7f9916b0cfdf953371611821c3a5c..0000000000000000000000000000000000000000
--- a/components/app_modal_dialogs/views/javascript_app_modal_dialog_views.cc
+++ /dev/null
@@ -1,153 +0,0 @@
-// Copyright (c) 2012 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 "components/app_modal_dialogs/views/javascript_app_modal_dialog_views.h"
-
-#include "base/strings/utf_string_conversions.h"
-#include "components/app_modal_dialogs/javascript_app_modal_dialog.h"
-#include "components/constrained_window/constrained_window_views.h"
-#include "grit/components_strings.h"
-#include "ui/base/l10n/l10n_util.h"
-#include "ui/events/keycodes/keyboard_codes.h"
-#include "ui/views/controls/message_box_view.h"
-#include "ui/views/controls/textfield/textfield.h"
-#include "ui/views/widget/widget.h"
-#include "ui/views/window/dialog_client_view.h"
-
-////////////////////////////////////////////////////////////////////////////////
-// JavaScriptAppModalDialogViews, public:
-
-JavaScriptAppModalDialogViews::JavaScriptAppModalDialogViews(
- JavaScriptAppModalDialog* parent)
- : parent_(parent) {
- int options = views::MessageBoxView::DETECT_DIRECTIONALITY;
- if (parent->javascript_message_type() ==
- content::JAVASCRIPT_MESSAGE_TYPE_PROMPT)
- options |= views::MessageBoxView::HAS_PROMPT_FIELD;
-
- views::MessageBoxView::InitParams params(parent->message_text());
- params.options = options;
- params.default_prompt = parent->default_prompt_text();
- message_box_view_ = new views::MessageBoxView(params);
- DCHECK(message_box_view_);
-
- message_box_view_->AddAccelerator(
- ui::Accelerator(ui::VKEY_C, ui::EF_CONTROL_DOWN));
- if (parent->display_suppress_checkbox()) {
- message_box_view_->SetCheckBoxLabel(
- l10n_util::GetStringUTF16(IDS_JAVASCRIPT_MESSAGEBOX_SUPPRESS_OPTION));
- }
-}
-
-JavaScriptAppModalDialogViews::~JavaScriptAppModalDialogViews() {
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// JavaScriptAppModalDialogViews, NativeAppModalDialog implementation:
-
-int JavaScriptAppModalDialogViews::GetAppModalDialogButtons() const {
- return GetDialogButtons();
-}
-
-void JavaScriptAppModalDialogViews::ShowAppModalDialog() {
- GetWidget()->Show();
-}
-
-void JavaScriptAppModalDialogViews::ActivateAppModalDialog() {
- GetWidget()->Show();
- GetWidget()->Activate();
-}
-
-void JavaScriptAppModalDialogViews::CloseAppModalDialog() {
- GetWidget()->Close();
-}
-
-void JavaScriptAppModalDialogViews::AcceptAppModalDialog() {
- GetDialogClientView()->AcceptWindow();
-}
-
-void JavaScriptAppModalDialogViews::CancelAppModalDialog() {
- GetDialogClientView()->CancelWindow();
-}
-
-//////////////////////////////////////////////////////////////////////////////
-// JavaScriptAppModalDialogViews, views::DialogDelegate implementation:
-
-int JavaScriptAppModalDialogViews::GetDefaultDialogButton() const {
- return ui::DIALOG_BUTTON_OK;
-}
-
-int JavaScriptAppModalDialogViews::GetDialogButtons() const {
- if (parent_->javascript_message_type() ==
- content::JAVASCRIPT_MESSAGE_TYPE_ALERT)
- return ui::DIALOG_BUTTON_OK;
-
- return ui::DIALOG_BUTTON_OK | ui::DIALOG_BUTTON_CANCEL;
-}
-
-base::string16 JavaScriptAppModalDialogViews::GetWindowTitle() const {
- return parent_->title();
-}
-
-void JavaScriptAppModalDialogViews::DeleteDelegate() {
- delete this;
-}
-
-bool JavaScriptAppModalDialogViews::Cancel() {
- parent_->OnCancel(message_box_view_->IsCheckBoxSelected());
- return true;
-}
-
-bool JavaScriptAppModalDialogViews::Accept() {
- parent_->OnAccept(message_box_view_->GetInputText(),
- message_box_view_->IsCheckBoxSelected());
- return true;
-}
-
-void JavaScriptAppModalDialogViews::OnClosed() {
- parent_->OnClose();
-}
-
-views::Widget* JavaScriptAppModalDialogViews::GetWidget() {
- return message_box_view_->GetWidget();
-}
-
-const views::Widget* JavaScriptAppModalDialogViews::GetWidget() const {
- return message_box_view_->GetWidget();
-}
-
-base::string16 JavaScriptAppModalDialogViews::GetDialogButtonLabel(
- ui::DialogButton button) const {
- if (parent_->is_before_unload_dialog()) {
- if (button == ui::DIALOG_BUTTON_OK) {
- return l10n_util::GetStringUTF16(
- parent_->is_reload() ?
- IDS_BEFORERELOAD_MESSAGEBOX_OK_BUTTON_LABEL :
- IDS_BEFOREUNLOAD_MESSAGEBOX_OK_BUTTON_LABEL);
- } else if (button == ui::DIALOG_BUTTON_CANCEL) {
- return l10n_util::GetStringUTF16(
- parent_->is_reload() ?
- IDS_BEFORERELOAD_MESSAGEBOX_CANCEL_BUTTON_LABEL :
- IDS_BEFOREUNLOAD_MESSAGEBOX_CANCEL_BUTTON_LABEL);
- }
- }
- return DialogDelegate::GetDialogButtonLabel(button);
-}
-
-///////////////////////////////////////////////////////////////////////////////
-// JavaScriptAppModalDialogViews, views::WidgetDelegate implementation:
-
-ui::ModalType JavaScriptAppModalDialogViews::GetModalType() const {
- return ui::MODAL_TYPE_SYSTEM;
-}
-
-views::View* JavaScriptAppModalDialogViews::GetContentsView() {
- return message_box_view_;
-}
-
-views::View* JavaScriptAppModalDialogViews::GetInitiallyFocusedView() {
- if (message_box_view_->text_box())
- return message_box_view_->text_box();
- return views::DialogDelegate::GetInitiallyFocusedView();
-}
« no previous file with comments | « components/app_modal_dialogs/views/javascript_app_modal_dialog_views.h ('k') | components/app_modal_dialogs_strings.grdp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698