1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/enterprise/data_controls/android_data_controls_dialog.h"
#include "base/functional/callback.h"
#include "chrome/browser/enterprise/data_controls/android_data_controls_dialog.h"
#include "chrome/grit/generated_resources.h"
#include "components/strings/grit/components_strings.h"
#include "content/public/browser/web_contents.h"
#include "ui/android/modal_dialog_wrapper.h"
#include "ui/android/window_android.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/models/dialog_model.h"
#include "ui/base/models/dialog_model_field.h"
namespace data_controls {
void AndroidDataControlsDialog::Show(base::OnceClosure on_destructed) {
ui::WindowAndroid* window = web_contents()->GetTopLevelNativeWindow();
// On Clank, the modal dialog model is created per-instance, so it must be
// created and built in this method, as opposed to the constructor (like the
// desktop dialog).
ui::ModalDialogWrapper::ShowTabModal(
CreateDialogModel(std::move(on_destructed)), window);
}
std::unique_ptr<ui::DialogModel> AndroidDataControlsDialog::CreateDialogModel(
base::OnceClosure on_destructed) {
ui::DialogModel::Builder dialog_builder;
dialog_builder.SetTitle(GetDialogTitle())
.AddParagraph(ui::DialogModelLabel(GetDialogLabel()));
switch (type_) {
case Type::kClipboardPasteBlock:
// TODO (crbug.com/385163723): Remove callbacks for copy/paste block
dialog_builder.AddOkButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/false),
ui::DialogModel::Button::Params().SetLabel(
l10n_util::GetStringUTF16(IDS_OK)));
break;
case Type::kClipboardCopyBlock:
// TODO (crbug.com/385163723): Remove callbacks for copy/paste block
dialog_builder.AddOkButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/false),
ui::DialogModel::Button::Params().SetLabel(
l10n_util::GetStringUTF16(IDS_OK)));
break;
// For the "Warn" dialogs, "Cancel" and "Ok" buttons have their labels /
// callbacks seemingly flipped - this is because the cancelling the action
// that is warned against should be the desired / "default" response from
// the user.
case Type::kClipboardPasteWarn:
dialog_builder.AddCancelButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/true),
ui::DialogModel::Button::Params().SetLabel(l10n_util::GetStringUTF16(
IDS_DATA_CONTROLS_PASTE_WARN_CONTINUE_BUTTON)));
dialog_builder.AddOkButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/false),
ui::DialogModel::Button::Params()
.SetLabel(l10n_util::GetStringUTF16(
IDS_DATA_CONTROLS_PASTE_WARN_CANCEL_BUTTON))
.SetStyle(ui::ButtonStyle::kProminent));
break;
case Type::kClipboardCopyWarn:
dialog_builder.AddCancelButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/true),
ui::DialogModel::Button::Params().SetLabel(l10n_util::GetStringUTF16(
IDS_DATA_CONTROLS_COPY_WARN_CONTINUE_BUTTON)));
dialog_builder.AddOkButton(
base::BindOnce(&AndroidDataControlsDialog::OnDialogButtonClicked,
base::Unretained(this),
/*bypassed=*/false),
ui::DialogModel::Button::Params()
.SetLabel(l10n_util::GetStringUTF16(
IDS_DATA_CONTROLS_COPY_WARN_CANCEL_BUTTON))
.SetStyle(ui::ButtonStyle::kProminent));
break;
}
dialog_builder.SetDialogDestroyingCallback(std::move(on_destructed));
return dialog_builder.Build();
}
AndroidDataControlsDialog::~AndroidDataControlsDialog() = default;
std::u16string AndroidDataControlsDialog::GetDialogTitle() const {
int id;
switch (type_) {
case Type::kClipboardPasteBlock:
id = IDS_DATA_CONTROLS_CLIPBOARD_PASTE_BLOCK_TITLE;
break;
case Type::kClipboardCopyBlock:
id = IDS_DATA_CONTROLS_CLIPBOARD_COPY_BLOCK_TITLE;
break;
case Type::kClipboardPasteWarn:
id = IDS_DATA_CONTROLS_CLIPBOARD_PASTE_WARN_TITLE;
break;
case Type::kClipboardCopyWarn:
id = IDS_DATA_CONTROLS_CLIPBOARD_COPY_WARN_TITLE;
break;
}
return l10n_util::GetStringUTF16(id);
}
std::u16string AndroidDataControlsDialog::GetDialogLabel() const {
int id;
switch (type_) {
case Type::kClipboardPasteBlock:
case Type::kClipboardCopyBlock:
id = IDS_DATA_CONTROLS_BLOCKED_LABEL;
break;
case Type::kClipboardPasteWarn:
case Type::kClipboardCopyWarn:
id = IDS_DATA_CONTROLS_WARNED_LABEL;
break;
}
return l10n_util::GetStringUTF16(id);
}
AndroidDataControlsDialog::AndroidDataControlsDialog(
Type type,
content::WebContents* contents,
base::OnceCallback<void(bool bypassed)> callback)
: DataControlsDialog(type, std::move(callback)),
content::WebContentsObserver(contents) {}
} // namespace data_controls
|