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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
|
// Copyright 2017 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/ui/views/autofill/popup/popup_view_views.h"
#include <algorithm>
#include <memory>
#include <optional>
#include <ranges>
#include <string>
#include <string_view>
#include <type_traits>
#include <utility>
#include <variant>
#include <vector>
#include "base/auto_reset.h"
#include "base/containers/contains.h"
#include "base/containers/to_vector.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/not_fatal_until.h"
#include "base/notreached.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/favicon/large_icon_service_factory.h"
#include "chrome/browser/image_fetcher/image_fetcher_service_factory.h"
#include "chrome/browser/media/webrtc/desktop_capture_access_handler.h"
#include "chrome/browser/platform_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_key.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/ui/autofill/autofill_popup_controller.h"
#include "chrome/browser/ui/autofill/autofill_suggestion_controller_utils.h"
#include "chrome/browser/ui/browser_element_identifiers.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/passwords/ui_utils.h"
#include "chrome/browser/ui/views/autofill/popup/popup_base_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_no_suggestions_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_row_factory_utils.h"
#include "chrome/browser/ui/views/autofill/popup/popup_row_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_search_bar_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_separator_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_title_view.h"
#include "chrome/browser/ui/views/autofill/popup/popup_view_utils.h"
#include "chrome/browser/ui/views/autofill/popup/popup_warning_view.h"
#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "components/autofill/core/browser/data_model/payments/credit_card.h"
#include "components/autofill/core/browser/metrics/autofill_metrics.h"
#include "components/autofill/core/browser/studies/autofill_experiments.h"
#include "components/autofill/core/browser/suggestions/suggestion.h"
#include "components/autofill/core/browser/suggestions/suggestion_hiding_reason.h"
#include "components/autofill/core/browser/suggestions/suggestion_type.h"
#include "components/autofill/core/browser/ui/autofill_resource_utils.h"
#include "components/autofill/core/common/aliases.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/autofill/core/common/autofill_payments_features.h"
#include "components/favicon/core/large_icon_service.h"
#include "components/feature_engagement/public/feature_constants.h"
#include "components/image_fetcher/core/image_fetcher_service.h"
#include "components/input/native_web_keyboard_event.h"
#include "components/password_manager/core/browser/password_sync_util.h"
#include "components/strings/grit/components_strings.h"
#include "components/sync/service/sync_service.h"
#include "components/user_education/common/feature_promo/feature_promo_controller.h"
#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/ui_base_features.h"
#include "ui/color/color_id.h"
#include "ui/events/blink/web_input_event.h"
#include "ui/events/event.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/events/types/event_type.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/geometry/rounded_corners_f.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/bubble/bubble_border.h"
#include "ui/views/bubble/bubble_border_arrow_utils.h"
#include "ui/views/controls/scroll_view.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/box_layout_view.h"
#include "ui/views/layout/flex_layout.h"
#include "ui/views/view.h"
#include "ui/views/view_class_properties.h"
#include "ui/views/widget/widget.h"
using views::BubbleBorder;
namespace autofill {
namespace {
// The minimum width should exceed the maximum size of a cursor, which is 128
// (see crbug.com/1434330).
constexpr int kAutofillPopupMinWidth = 156;
static_assert(kAutofillPopupMinWidth > 128);
// TODO(crbug.com/41382463): move handling the max width to the base class.
constexpr int kAutofillPopupMaxWidth = 456;
constexpr int kMaxPopupWithSearchBarHeight = 400;
// Preferred position relative to the control sides of the sub-popup.
constexpr std::array<views::BubbleArrowSide, 2> kDefaultSubPopupSides = {
views::BubbleArrowSide::kLeft, views::BubbleArrowSide::kRight};
constexpr std::array<views::BubbleArrowSide, 2> kDefaultSubPopupSidesRTL = {
views::BubbleArrowSide::kRight, views::BubbleArrowSide::kLeft};
int GetContentsVerticalPadding() {
return ChromeLayoutProvider::Get()->GetDistanceMetric(
DISTANCE_CONTENT_LIST_VERTICAL_SINGLE);
}
bool CanShowRootPopup(AutofillSuggestionController& controller) {
#if BUILDFLAG(IS_MAC)
// It's possible for the container_view to not be in a window. In that case,
// cancel the popup since we can't fully set it up.
if (!platform_util::GetTopLevel(controller.container_view())) {
return false;
}
#else
// If the top level widget can't be found, cancel the popup since we can't
// fully set it up. On Mac Cocoa browser, |observing_widget| is null
// because the parent is not a views::Widget.
if (!views::Widget::GetTopLevelWidgetForNativeView(
controller.container_view())) {
return false;
}
#endif
return true;
}
// Returns true when the suggestion should open a sub popup menu automatically
// when hovering the content area. This is used for manual fallback
// suggestions.
bool ContentCellShouldOpenSubPopupSuggestion(const Suggestion& suggestion) {
return !suggestion.IsAcceptable() && !suggestion.HasDeactivatedStyle() &&
!suggestion.children.empty();
}
// If `is_root_popup` is `true`, the result list corresponds to sides defined in
// `PopupBaseView::kDefaultPreferredPopupSides`, when `prefer_prev_arrow_side`
// is also `true` the side of the `prev_arrow` is added at the beginning of
// the list. Having the previous arrow side preferred allows to avoid popup
// jumpings in most cases when the updated suggestions change the popup size
// as well and a new side is considered optimal.
// For non root popups, the values are taken from `kDefaultSubPopupSides[RTL]`.
std::vector<views::BubbleArrowSide> GetPreferredPopupSides(
bool is_root_popup,
bool prefer_prev_arrow_side,
BubbleBorder::Arrow prev_arrow) {
if (is_root_popup && prefer_prev_arrow_side &&
prev_arrow != BubbleBorder::Arrow::NONE) {
static constexpr size_t n_default_preferred_sides =
PopupBaseView::kDefaultPreferredPopupSides.size();
std::vector<views::BubbleArrowSide> preferred_popup_sides(
n_default_preferred_sides + 1);
// The first element is filled with the previous arrow side to minimize
// jumping due to changed popup size and potentially new optimal position.
preferred_popup_sides[0] = views::GetBubbleArrowSide(prev_arrow);
// Fill the rest of elements with the default ones.
base::span(preferred_popup_sides)
.last(n_default_preferred_sides)
.copy_from(PopupBaseView::kDefaultPreferredPopupSides);
return preferred_popup_sides;
} else if (is_root_popup) {
return base::ToVector(PopupBaseView::kDefaultPreferredPopupSides);
}
return base::ToVector(base::i18n::IsRTL() ? kDefaultSubPopupSidesRTL
: kDefaultSubPopupSides);
}
void DefaultA11yAnnouncer(const std::u16string& message, bool polite) {
Browser* browser = chrome::FindLastActive();
if (!browser) {
return;
}
BrowserView* browser_view = BrowserView::GetBrowserViewForBrowser(browser);
if (!browser_view) {
return;
}
if (polite) {
browser_view->GetViewAccessibility().AnnouncePolitely(message);
} else {
browser_view->GetViewAccessibility().AnnounceText(message);
}
}
} // namespace
// Creates a new popup view instance. The Widget parent is taken either from
// the top level widget for the root popup or from the parent for sub-popups.
// Setting Widget's parent enables its internal child-lifetime management,
// see `Widget::InitParams::parent` doc comment for details.
PopupViewViews::PopupViewViews(
base::WeakPtr<AutofillPopupController> controller,
base::WeakPtr<ExpandablePopupParentView> parent,
views::Widget* parent_widget)
: PopupBaseView(controller,
parent_widget,
views::Widget::InitParams::Activatable::kDefault,
/*show_arrow_pointer=*/false),
controller_(controller),
parent_(parent) {
InitViews();
GetViewAccessibility().SetRole(ax::mojom::Role::kListBox);
GetViewAccessibility().SetName(
l10n_util::GetStringUTF16(IDS_AUTOFILL_POPUP_ACCESSIBLE_NODE_DATA));
}
PopupViewViews::PopupViewViews(
base::WeakPtr<AutofillPopupController> controller,
std::optional<const AutofillPopupView::SearchBarConfig> search_bar_config)
: PopupBaseView(controller,
views::Widget::GetTopLevelWidgetForNativeView(
controller->container_view()),
search_bar_config
? views::Widget::InitParams::Activatable::kYes
: views::Widget::InitParams::Activatable::kDefault),
controller_(controller),
search_bar_config_(std::move(search_bar_config)) {
InitViews();
GetViewAccessibility().SetRole(ax::mojom::Role::kListBox);
}
PopupViewViews::~PopupViewViews() = default;
void PopupViewViews::OnMouseEntered(const ui::MouseEvent& event) {
OnMouseEnteredInChildren();
}
void PopupViewViews::OnMouseExited(const ui::MouseEvent& event) {
OnMouseExitedInChildren();
}
void PopupViewViews::OnPaint(gfx::Canvas* canvas) {
views::View::OnPaint(canvas);
if (controller_) {
controller_->OnPopupPainted();
}
}
bool PopupViewViews::Show(
AutoselectFirstSuggestion autoselect_first_suggestion) {
base::AutoReset show_in_progress_reset(&show_in_progress_, !!search_bar_);
UpdateAccessibleStates();
if (!DoShow()) {
return false;
}
has_keyboard_focus_ = !parent_;
if (search_bar_) {
// Make sure the search bar is focused before possible first suggestion
// selection, because `SetSelectedCell()` eventually leads to calling
// `SetPopupFocusOverride()` and focusing the input while having a view
// overriding focus makes `ViewAXPlatformNodeDelegate` unhappy.
search_bar_->Focus();
}
if (autoselect_first_suggestion) {
// Selecting first selectable row.
// TODO(crbug.com/327931044): Remove the if condition and make the else as
// the default as part of cleanup.
if (!controller_->GetSuggestionAt(0).HasDeactivatedStyle()) {
SetSelectedCell(CellIndex{0u, PopupRowView::CellType::kContent},
PopupCellSelectionSource::kNonUserInput);
} else {
SetSelectedCell(std::nullopt, PopupCellSelectionSource::kNonUserInput);
SelectNextRow(PopupCellSelectionSource::kNonUserInput);
}
}
// Compose has separate on show announcements.
// TODO(crbug.com/340359989): Replace with AutofillComposeDelegate::OnShow
if (controller_->GetMainFillingProduct() == FillingProduct::kCompose) {
switch (controller_->GetSuggestionAt(0).type) {
case SuggestionType::kComposeResumeNudge:
case SuggestionType::kComposeSavedStateNotification: {
const std::u16string saved_state_message = l10n_util::GetStringUTF16(
IDS_COMPOSE_SUGGESTION_AX_MESSAGE_ON_SHOW_RESUME);
a11y_announcer_.Run(saved_state_message, /*polite=*/true);
break;
}
case SuggestionType::kComposeProactiveNudge: {
const std::u16string proactive_message = l10n_util::GetStringUTF16(
IDS_COMPOSE_SUGGESTION_AX_MESSAGE_ON_SHOW_PROACTIVE);
a11y_announcer_.Run(proactive_message, /*polite=*/true);
break;
}
case SuggestionType::kComposeDisable:
case SuggestionType::kComposeGoToSettings:
case SuggestionType::kComposeNeverShowOnThisSiteAgain:
break;
default:
// All Compose SuggestionTypes should already be handled.
NOTREACHED();
}
}
MaybeA11yFocusInformationalSuggestion();
return !CanActivate() || (GetWidget() && GetWidget()->IsActive());
}
void PopupViewViews::Hide() {
open_sub_popup_timer_.Stop();
no_selection_sub_popup_close_timer_.Stop();
// The controller is no longer valid after it hides us.
controller_ = nullptr;
UpdateAccessibleStates();
DoHide();
}
std::optional<PopupViewViews::CellIndex> PopupViewViews::GetSelectedCell()
const {
// If the suggestions were updated, the cell index may no longer be
// up-to-date, but it cannot simply be reset, because we would lose the
// current selection. Therefore some validity checks need to be performed
// here.
if (!row_with_selected_cell_ ||
!HasSelectablePopupRowViewAt(*row_with_selected_cell_)) {
return std::nullopt;
}
if (std::optional<PopupRowView::CellType> cell_type =
GetPopupRowViewAt(*row_with_selected_cell_).GetSelectedCell()) {
return CellIndex{*row_with_selected_cell_, *cell_type};
}
return std::nullopt;
}
void PopupViewViews::SetSelectedCell(std::optional<CellIndex> cell_index,
PopupCellSelectionSource source) {
SetSelectedCell(cell_index, source, AutoselectFirstSuggestion(false));
}
bool PopupViewViews::HandleKeyPressEvent(
const input::NativeWebKeyboardEvent& event) {
// If a subpopup has not received focus yet but a horizontal key press event
// happens, this means the user wants to navigate from a selected cell in
// the parent to the currently open subpopup. In this case, we select
// the first subpopup cell.
if (!has_keyboard_focus_) {
bool capture_keyboard_focus =
(event.windows_key_code == ui::VKEY_RIGHT && !base::i18n::IsRTL()) ||
(event.windows_key_code == ui::VKEY_LEFT && base::i18n::IsRTL());
if (capture_keyboard_focus) {
// Select first row.
SetSelectedCell(std::nullopt, PopupCellSelectionSource::kNonUserInput);
SelectNextRow(PopupCellSelectionSource::kNonUserInput);
return true;
}
return false;
}
// If the row can handle the event itself (e.g. switching between cells in the
// same row), we let it.
if (std::optional<CellIndex> selected_cell = GetSelectedCell()) {
if (GetPopupRowViewAt(selected_cell->first).HandleKeyPressEvent(event)) {
return true;
}
}
if (controller_->GetMainFillingProduct() == FillingProduct::kCompose) {
return HandleKeyPressEventForCompose(event);
}
const bool kHasShiftModifier =
(event.GetModifiers() & blink::WebInputEvent::kShiftKey);
const bool kHasNonShiftModifier =
(event.GetModifiers() & blink::WebInputEvent::kKeyModifiers &
~blink::WebInputEvent::kShiftKey);
switch (event.windows_key_code) {
case ui::VKEY_UP:
SelectPreviousRow();
return true;
case ui::VKEY_DOWN:
SelectNextRow(PopupCellSelectionSource::kKeyboard);
return true;
case ui::VKEY_LEFT:
// `base::i18n::IsRTL` is used here instead of the controller's method
// because the controller's `IsRTL` depends on the language of the focused
// field and not the overall UI language. However, the layout of the popup
// is determined by the overall UI language.
if (base::i18n::IsRTL()) {
return SelectNextHorizontalCell();
} else {
if (SelectParentPopupContentCell()) {
return true;
}
return SelectPreviousHorizontalCell();
}
case ui::VKEY_RIGHT:
if (base::i18n::IsRTL()) {
if (SelectParentPopupContentCell()) {
return true;
}
return SelectPreviousHorizontalCell();
} else {
return SelectNextHorizontalCell();
}
case ui::VKEY_PRIOR: // Page up.
// Set no line and then select the next line in case the first line is not
// selectable.
SetSelectedCell(std::nullopt, PopupCellSelectionSource::kKeyboard);
SelectNextRow(PopupCellSelectionSource::kKeyboard);
return true;
case ui::VKEY_NEXT: // Page down.
SetSelectedCell(std::nullopt, PopupCellSelectionSource::kKeyboard);
SelectPreviousRow();
return true;
case ui::VKEY_DELETE:
return kHasShiftModifier && RemoveSelectedCell();
case ui::VKEY_ESCAPE:
if (SelectParentPopupContentCell()) {
return true;
}
// If this is the root popup view and there was no sub-popup open (find
// the check for it above) just close itself.
if (!parent_) {
controller_->Hide(SuggestionHidingReason::kUserAborted);
return true;
}
return false;
case ui::VKEY_TAB:
// We want TAB or Shift+TAB press to cause the selected line to be
// accepted, but still return false so the tab key press propagates and
// change the cursor location.
// We do not want to handle Mod+TAB for other modifiers because this may
// have other purposes (e.g., change the tab).
if (!kHasNonShiftModifier) {
AcceptSelectedContentOrCreditCardCell();
}
return false;
default:
return false;
}
}
bool PopupViewViews::HandleKeyPressEventForCompose(
const input::NativeWebKeyboardEvent& event) {
CHECK_EQ(controller_->GetMainFillingProduct(), FillingProduct::kCompose);
const bool kHasShiftModifier =
(event.GetModifiers() & blink::WebInputEvent::kShiftKey);
switch (event.windows_key_code) {
case ui::VKEY_ESCAPE:
controller_->Hide(SuggestionHidingReason::kUserAborted);
return true;
case ui::VKEY_UP:
if (GetSelectedCell()) {
SelectPreviousRow();
return true;
}
return false;
case ui::VKEY_DOWN:
if (GetSelectedCell()) {
SelectNextRow(PopupCellSelectionSource::kKeyboard);
return true;
}
return false;
case ui::VKEY_LEFT:
// `base::i18n::IsRTL` is used here instead of the controller's method
// because the controller's `IsRTL` depends on the language of the focused
// field and not the overall UI language. However, the layout of the popup
// is determined by the overall UI language.
if (base::i18n::IsRTL()) {
return SelectNextHorizontalCell();
} else {
if (SelectParentPopupContentCell()) {
return true;
}
return SelectPreviousHorizontalCell();
}
case ui::VKEY_RIGHT:
if (base::i18n::IsRTL()) {
if (SelectParentPopupContentCell()) {
return true;
}
return SelectPreviousHorizontalCell();
} else {
return SelectNextHorizontalCell();
}
case ui::VKEY_TAB: {
const bool is_root_popup = !parent_;
// TAB should only be handled by the root popup. The subpopup only deals
// with selection (ENTER) and arrow navigation.
if (!is_root_popup) {
return false;
}
std::optional<CellIndex> selected_cell = GetSelectedCell();
// The `!row_with_open_sub_popup_` check is to make sure that we only
// select the content cell if there is no subpopup open. This is because
// if one presses TAB from the subpopup, we also want to close the root
// popup (and navigate to the next HTML element).
const bool tab_pressed_popup_unselected =
!selected_cell && !kHasShiftModifier && !row_with_open_sub_popup_;
if (tab_pressed_popup_unselected) {
// If there is no selected cell in the compose popup, TAB should select
// the single compose nudge entry.
SetSelectedCell(CellIndex(0, PopupRowView::CellType::kContent),
PopupCellSelectionSource::kKeyboard);
return true;
}
const bool tab_pressed_popup_selected =
selected_cell && !kHasShiftModifier;
if (tab_pressed_popup_selected) {
// TAB should close the popup and focus the next HTML element if the
// Compose entry is selected.
controller_->Hide(SuggestionHidingReason::kUserAborted);
return false;
}
const bool shift_tab_pressed_popup_unselected_no_subpopup =
!selected_cell && kHasShiftModifier && !row_with_open_sub_popup_;
if (shift_tab_pressed_popup_unselected_no_subpopup) {
// If the Compose suggestion is not selected, Shift+TAB should not be
// handled.
return false;
}
const bool shift_tab_pressed_has_subpopup =
kHasShiftModifier && row_with_open_sub_popup_;
if (shift_tab_pressed_has_subpopup) {
// In this case, focus on the root/parent popup content area. This
// closes the sub-popup.
SetSelectedCell(CellIndex(0, PopupRowView::CellType::kContent),
PopupCellSelectionSource::kKeyboard);
return true;
}
const bool shift_tab_pressed_root_popup_selected =
selected_cell && kHasShiftModifier && is_root_popup;
if (shift_tab_pressed_root_popup_selected) {
// Shift+TAB should remove the selection when the root popup is
// selected, but keep the popup open.
SetSelectedCell(std::nullopt, PopupCellSelectionSource::kKeyboard);
return true;
}
return false;
}
default:
return false;
}
}
void PopupViewViews::SelectPreviousRow() {
DCHECK(!rows_.empty());
std::optional<CellIndex> old_index = GetSelectedCell();
// Temporarily use an int to avoid underflows.
int new_row = old_index ? static_cast<int>(old_index->first) - 1 : -1;
for (size_t i = 0; i < rows_.size() && !HasSelectablePopupRowViewAt(new_row);
i++) {
--new_row;
if (new_row < 0) {
new_row = static_cast<int>(rows_.size()) - 1;
}
}
// `kControl` is used to show a sub-popup with child suggestions. It can
// only be selected on a new row if the corresponding suggestion has
// children.
const PopupRowView::CellType new_cell_type =
(old_index && old_index->second == PopupRowView::CellType::kControl &&
GetPopupRowViewAt(new_row).GetExpandChildSuggestionsView())
? PopupRowView::CellType::kControl
: PopupRowView::CellType::kContent;
SetSelectedCell(CellIndex{new_row, new_cell_type},
PopupCellSelectionSource::kKeyboard);
}
void PopupViewViews::SelectNextRow(PopupCellSelectionSource source) {
DCHECK(!rows_.empty());
std::optional<CellIndex> old_index = GetSelectedCell();
size_t new_row = old_index ? old_index->first + 1u : 0u;
for (size_t i = 0; i < rows_.size() && !HasSelectablePopupRowViewAt(new_row);
i++) {
++new_row;
if (new_row >= rows_.size()) {
new_row = 0u;
}
}
// `kControl` is used to show a sub-popup with child suggestions. It can
// only be selected on a new row if the corresponding suggestion has
// children.
const PopupRowView::CellType new_cell_type =
(old_index && old_index->second == PopupRowView::CellType::kControl &&
GetPopupRowViewAt(new_row).GetExpandChildSuggestionsView())
? PopupRowView::CellType::kControl
: PopupRowView::CellType::kContent;
SetSelectedCell(CellIndex{new_row, new_cell_type}, source);
}
bool PopupViewViews::SelectNextHorizontalCell() {
std::optional<CellIndex> selected_cell = GetSelectedCell();
if (selected_cell && HasSelectablePopupRowViewAt(selected_cell->first)) {
PopupRowView& row = GetPopupRowViewAt(selected_cell->first);
if (selected_cell->second == PopupRowView::CellType::kContent &&
row.GetExpandChildSuggestionsView()) {
SetSelectedCell(
CellIndex{selected_cell->first, PopupRowView::CellType::kControl},
PopupCellSelectionSource::kKeyboard, AutoselectFirstSuggestion(true));
return true;
}
}
return false;
}
bool PopupViewViews::SelectPreviousHorizontalCell() {
std::optional<CellIndex> selected_cell = GetSelectedCell();
if (selected_cell &&
selected_cell->second == PopupRowView::CellType::kControl &&
HasSelectablePopupRowViewAt(selected_cell->first)) {
SetSelectedCell(
CellIndex{selected_cell->first, PopupRowView::CellType::kContent},
PopupCellSelectionSource::kKeyboard);
return true;
}
return false;
}
bool PopupViewViews::AcceptSelectedContentOrCreditCardCell() {
std::optional<CellIndex> index = GetSelectedCell();
if (!controller_ || !index) {
return false;
}
if (index->second != PopupRowView::CellType::kContent) {
return false;
}
if (!IsStandaloneSuggestionType(
controller_->GetSuggestionAt(index->first).type)) {
return false;
}
controller_->AcceptSuggestion(index->first);
return true;
}
bool PopupViewViews::RemoveSelectedCell() {
std::optional<CellIndex> index = GetSelectedCell();
// Only content cells can be removed.
if (!index || index->second != PopupRowView::CellType::kContent ||
!controller_) {
return false;
}
if (!controller_->RemoveSuggestion(index->first,
AutofillMetrics::SingleEntryRemovalMethod::
kKeyboardShiftDeletePressed)) {
return false;
}
return true;
}
void PopupViewViews::OnSuggestionsChanged(bool prefer_prev_arrow_side) {
// New suggestions invalidate this scheduling (if it's running), cancel it.
open_sub_popup_timer_.Stop();
SetRowWithOpenSubPopup(std::nullopt);
CreateSuggestionViews();
// Updating bounds and redrawing popup can cause the popup to hide.
if (!DoUpdateBoundsAndRedrawPopup(prefer_prev_arrow_side)) {
return;
}
MaybeA11yFocusInformationalSuggestion();
ShowIPHFeaturePromos();
}
bool PopupViewViews::OverlapsWithPictureInPictureWindow() const {
return BoundsOverlapWithPictureInPictureWindow(GetBoundsInScreen());
}
std::optional<int32_t> PopupViewViews::GetAxUniqueId() {
return std::optional<int32_t>(
PopupBaseView::GetViewAccessibility().GetUniqueId());
}
void PopupViewViews::AxAnnounce(const std::u16string& text) {
a11y_announcer_.Run(text, /*polite=*/false);
}
base::WeakPtr<AutofillPopupView> PopupViewViews::CreateSubPopupView(
base::WeakPtr<AutofillSuggestionController> controller) {
if (GetWidget() && controller) {
return (new PopupViewViews(
static_cast<AutofillPopupController&>(*controller).GetWeakPtr(),
weak_ptr_factory_.GetWeakPtr(), GetWidget()))
->GetWeakPtr();
}
return nullptr;
}
std::optional<AutofillClient::PopupScreenLocation>
PopupViewViews::GetPopupScreenLocation() const {
if (!GetWidget()) {
return std::nullopt;
}
using ArrowPosition = AutofillClient::PopupScreenLocation::ArrowPosition;
auto convert_arrow_enum =
[](views::BubbleBorder::Arrow arrow) -> ArrowPosition {
switch (arrow) {
case views::BubbleBorder::Arrow::TOP_RIGHT:
return ArrowPosition::kTopRight;
case views::BubbleBorder::Arrow::TOP_LEFT:
return ArrowPosition::kTopLeft;
case views::BubbleBorder::Arrow::BOTTOM_RIGHT:
return ArrowPosition::kBottomRight;
case views::BubbleBorder::Arrow::BOTTOM_LEFT:
return ArrowPosition::kBottomLeft;
case views::BubbleBorder::Arrow::LEFT_TOP:
return ArrowPosition::kLeftTop;
case views::BubbleBorder::Arrow::RIGHT_TOP:
return ArrowPosition::kRightTop;
default:
NOTREACHED();
}
};
views::Border* border = GetWidget()->GetRootView()->GetBorder();
CHECK(border);
return AutofillClient::PopupScreenLocation{
.bounds = GetWidget()->GetWindowBoundsInScreen(),
.arrow_position = convert_arrow_enum(
static_cast<views::BubbleBorder*>(border)->arrow())};
}
bool PopupViewViews::HasFocus() const {
if (!GetWidget()) {
return false;
}
// The `CanActivate() && show_in_progress_` expression is needed to cover
// the case when this method is called during the `GetWidget()->Show()`
// execution and the popup is not yet active. It optimistically responds
// `true` and requires an additional `GetWidget()->IsActive()` check after
// the `GetWidget()->Show()` call to ensure the popup is shown successfully.
return (CanActivate() && show_in_progress_) || GetWidget()->IsActive();
}
void PopupViewViews::OnWidgetVisibilityChanged(views::Widget* widget,
bool visible) {
if (!visible) {
return;
}
// Show the in-product-help promo anchored to this bubble.
// The in-product-help promo is a bubble anchored to this row item to show
// educational messages. The promo bubble should only be shown once in one
// session and has a limit for how many times it can be shown at most in a
// period of time.
ShowIPHFeaturePromos();
}
void PopupViewViews::SearchBarOnInputChanged(std::u16string_view query) {
if (controller_) {
controller_->SetFilter(
query.empty() ? std::nullopt
: std::optional(AutofillPopupController::SuggestionFilter(
std::u16string(query))));
}
}
void PopupViewViews::SearchBarOnFocusLost() {
if (controller_) {
controller_->Hide(SuggestionHidingReason::kSearchBarFocusLost);
}
}
bool PopupViewViews::SearchBarHandleKeyPressed(const ui::KeyEvent& event) {
if (!controller_) {
return false;
}
// TODO(crbug.com/339187209): On MaOS, conversion of a character key event to
// `NativeWebKeyboardEvent` hits `NOTREACHED` in `ui::DomKeyFromNSEvent`. This
// doesn't affect our use case as we handle only non-character events
// (Arrows/Esc/etc) for navigation. But it needs to be investigated and ideally
// removed.
#if BUILDFLAG(IS_MAC)
if (event.is_char()) {
return false;
}
#endif // BUILDFLAG(IS_MAC)
// Handling events in the controller (the delegate's handler is prioritized by
// the search bar) enables keyboard navigation when the search bar input
// field is focused.
return controller_->HandleKeyPressEvent(input::NativeWebKeyboardEvent(event));
}
void PopupViewViews::SetSelectedCell(
std::optional<CellIndex> cell_index,
PopupCellSelectionSource source,
AutoselectFirstSuggestion autoselect_first_suggestion,
bool suppress_popup) {
if (!controller_) {
return;
}
std::optional<CellIndex> old_index = GetSelectedCell();
if (old_index == cell_index) {
return;
}
if (old_index) {
GetPopupRowViewAt(old_index->first).SetSelectedCell(std::nullopt);
}
// New selected cell invalidates this scheduling (if it's running), cancel it.
open_sub_popup_timer_.Stop();
if (cell_index && HasSelectablePopupRowViewAt(cell_index->first)) {
has_keyboard_focus_ = true;
// The sub-popup hiding is canceled because the newly selected cell will
// rule the sub-pupop visibility from now.
no_selection_sub_popup_close_timer_.Stop();
row_with_selected_cell_ = cell_index->first;
PopupRowView& new_selected_row = GetPopupRowViewAt(cell_index->first);
new_selected_row.SetSelectedCell(cell_index->second);
new_selected_row.ScrollViewToVisible();
if (!controller_) {
// The previous SetSelectedCell() call may have hidden the popup.
return;
}
const Suggestion& suggestion =
controller_->GetSuggestionAt(cell_index->first);
bool can_open_sub_popup =
!suppress_popup &&
(cell_index->second == PopupRowView::CellType::kControl ||
ContentCellShouldOpenSubPopupSuggestion(suggestion));
CHECK(!can_open_sub_popup ||
!controller_->GetSuggestionAt(cell_index->first).children.empty());
std::optional<size_t> row_with_open_sub_popup =
can_open_sub_popup ? std::optional(cell_index->first) : std::nullopt;
base::TimeDelta delay = source == PopupCellSelectionSource::kMouse
? kMouseOpenSubPopupDelay
: kNonMouseOpenSubPopupDelay;
open_sub_popup_timer_.Start(
FROM_HERE, delay,
base::BindOnce(&PopupViewViews::SetRowWithOpenSubPopup,
weak_ptr_factory_.GetWeakPtr(), row_with_open_sub_popup,
autoselect_first_suggestion));
} else {
row_with_selected_cell_ = std::nullopt;
}
}
void PopupViewViews::ShowIPHFeaturePromos() {
Browser* browser = GetBrowser();
if (!browser) {
return;
}
if (!GetWidget() || !GetWidget()->IsVisible() || !controller_) {
return;
}
for (const auto& iph_metadata : base::MakeFlatSet<Suggestion::IPHMetadata>(
controller_->GetSuggestions(), /*comp=*/{},
&Suggestion::iph_metadata)) {
if (iph_metadata.feature) {
user_education::FeaturePromoParams params(*iph_metadata.feature);
// Setting the params to a `std::vector` (even if it is empty), indicates
// to the framework that a substitution should be made. Therefore only
// set it if `iph_params` is non-empty.
if (!iph_metadata.iph_params.empty()) {
params.body_params = iph_metadata.iph_params;
params.screen_reader_params = iph_metadata.iph_params;
}
browser->window()->MaybeShowFeaturePromo(std::move(params));
}
}
}
void PopupViewViews::UpdateAccessibleStates() const {
if (controller_) {
GetViewAccessibility().SetIsExpanded();
GetViewAccessibility().SetIsInvisible(false);
} else {
GetViewAccessibility().SetIsCollapsed();
GetViewAccessibility().SetIsInvisible(true);
}
}
bool PopupViewViews::HasSelectablePopupRowViewAt(size_t index) const {
return index < rows_.size() &&
std::holds_alternative<PopupRowView*>(rows_[index]) &&
GetPopupRowViewAt(index).IsSelectable();
}
void PopupViewViews::InitViews() {
a11y_announcer_ = base::BindRepeating(&DefaultA11yAnnouncer);
SetNotifyEnterExitOnChild(true);
SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::Orientation::kVertical));
if (search_bar_config_) {
search_bar_ = AddChildView(std::make_unique<PopupSearchBarView>(
search_bar_config_->placeholder, *this));
search_bar_->SetProperty(views::kMarginsKey,
gfx::Insets::VH(GetContentsVerticalPadding(), 0));
AddChildView(std::make_unique<PopupSeparatorView>(/*vertical_padding=*/0));
}
suggestions_container_ =
AddChildView(views::Builder<views::BoxLayoutView>()
.SetOrientation(views::BoxLayout::Orientation::kVertical)
.Build());
Browser* browser = GetBrowser();
if (Profile* profile = browser ? browser->profile() : nullptr) {
auto* favicon_service =
LargeIconServiceFactory::GetForBrowserContext(profile);
auto* image_fetcher =
ImageFetcherServiceFactory::GetForKey(profile->GetProfileKey())
->GetImageFetcher(
image_fetcher::ImageFetcherConfig::kInMemoryWithDiskCache);
password_favicon_loader_ = std::make_unique<PasswordFaviconLoaderImpl>(
favicon_service, image_fetcher);
}
CreateSuggestionViews();
UpdateAccessibleStates();
}
void PopupViewViews::CreateSuggestionViews() {
// Null all pointers prior to deleting the children views to avoid temporarily
// dangling pointers that might be picked up by dangle detection builds. Also,
// `footer_container_` is instantiated conditionally, which can make its value
// obsolete after `OnSuggestionsChanged()`.
scroll_view_ = nullptr;
body_container_ = nullptr;
footer_container_ = nullptr;
rows_.clear();
suggestions_container_->RemoveAllChildViews();
const int kInterItemsPadding = GetContentsVerticalPadding();
const std::vector<Suggestion> suggestions = controller_->GetSuggestions();
SetBackground(views::CreateSolidBackground(ui::kColorDropdownBackground));
rows_.reserve(suggestions.size());
size_t current_line_number = 0u;
// No suggestions (or only footer ones, which are not filterable) with
// a non-empty filter query means that there are no results matching
// the query. Show a corresponding message.
if ((suggestions.empty() ||
std::ranges::all_of(suggestions,
[](const Suggestion& suggestion) {
return suggestion.filtration_policy ==
Suggestion::FiltrationPolicy::kStatic;
})) &&
search_bar_ && controller_->HasFilteredOutSuggestions()) {
suggestions_container_->AddChildView(
std::make_unique<PopupNoSuggestionsView>(
search_bar_config_->no_results_message));
}
// Add the body rows, if there are any.
if (!suggestions.empty() && !IsFooterItem(suggestions, 0u)) {
// Create a container to wrap the "regular" (non-footer) rows.
std::unique_ptr<views::BoxLayoutView> body_container =
views::Builder<views::BoxLayoutView>()
.SetOrientation(views::BoxLayout::Orientation::kVertical)
.SetInsideBorderInsets(gfx::Insets::VH(kInterItemsPadding, 0))
.Build();
for (; current_line_number < suggestions.size() &&
!IsFooterItem(suggestions, current_line_number);
++current_line_number) {
switch (suggestions[current_line_number].type) {
case SuggestionType::kSeparator:
rows_.push_back(body_container->AddChildView(
std::make_unique<PopupSeparatorView>(kInterItemsPadding)));
break;
case SuggestionType::kTitle:
rows_.push_back(
body_container->AddChildView(std::make_unique<PopupTitleView>(
suggestions[current_line_number].main_text.value)));
break;
case SuggestionType::kMixedFormMessage:
case SuggestionType::kInsecureContextPaymentDisabledMessage:
rows_.push_back(
body_container->AddChildView(std::make_unique<PopupWarningView>(
suggestions[current_line_number])));
break;
// The default section contains all selectable rows and includes
// autocomplete, address, credit cards and passwords.
default:
std::optional<AutofillPopupController::SuggestionFilterMatch>
filter_match =
controller_->GetSuggestionFilterMatches().empty()
? std::nullopt
: std::optional(controller_->GetSuggestionFilterMatches()
[current_line_number]);
PopupRowView* row_view =
body_container->AddChildView(CreatePopupRowView(
controller(), /*a11y_selection_delegate=*/*this,
/*selection_delegate=*/*this, current_line_number,
std::move(filter_match), password_favicon_loader_.get()));
rows_.push_back(row_view);
const base::Feature* const feature =
suggestions[current_line_number].iph_metadata.feature;
// Set appropriate element ids for IPH targets, it is important to
// set them earlier to make sure the elements are discoverable later
// during popup's visibility change and the promo bubble showing.
if (feature == &feature_engagement::
kIPHAutofillVirtualCardSuggestionFeature ||
feature == &feature_engagement::
kIPHAutofillDisabledVirtualCardSuggestionFeature ||
feature == &feature_engagement::
kIPHAutofillCardInfoRetrievalSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillCreditCardSuggestionEntryElementId);
} else if (feature ==
&feature_engagement::
kIPHAutofillVirtualCardCVCSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillStandaloneCvcSuggestionElementId);
} else if (feature ==
&feature_engagement::
kIPHAutofillExternalAccountProfileSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillSuggestionElementId);
} else if (feature == &feature_engagement::
kIPHAutofillCreditCardBenefitFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillCreditCardBenefitElementId);
} else if (feature == &feature_engagement::
kIPHPlusAddressCreateSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kPlusAddressCreateSuggestionElementId);
} else if (feature ==
&feature_engagement::
kIPHAutofillBnplAffirmOrZipSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillBnplAffirmOrZipSuggestionElementId);
} else if (feature ==
&feature_engagement::
kIPHAutofillHomeWorkProfileSuggestionFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillHomeWorkSuggestionElementId);
} else if (feature == &feature_engagement::
kIPHAutofillEnableLoyaltyCardsFeature) {
row_view->SetProperty(views::kElementIdentifierKey,
kAutofillEnableLoyaltyCardsElementId);
}
}
}
std::unique_ptr<views::ScrollView> scroll_view =
views::Builder<views::ScrollView>()
.SetBackgroundColor(ui::kColorDropdownBackground)
.SetHorizontalScrollBarMode(
views::ScrollView::ScrollBarMode::kDisabled)
.SetDrawOverflowIndicator(false)
.ClipHeightTo(
0, body_container->GetHeightForWidth(kAutofillPopupMaxWidth))
.Build();
body_container_ = scroll_view->SetContents(std::move(body_container));
scroll_view_ = suggestions_container_->AddChildView(std::move(scroll_view));
// If `kUiCompositorScrollWithLayers` is enabled, then a ScrollView performs
// scrolling by using layers. These layers are not affected by the clip path
// of the widget and their corners remain unrounded, thus going beyond
// the popup's rounded corners. To avoid these, set a corner radius for
// the ScrollView's ViewPort if layer scrolling is enabled.
if (scroll_view_ && base::FeatureList::IsEnabled(
::features::kUiCompositorScrollWithLayers)) {
scroll_view_->SetViewportRoundedCornerRadius(
gfx::RoundedCornersF(GetCornerRadius()));
}
suggestions_container_->SetFlexForView(scroll_view_.get(), 1);
}
if (current_line_number >= suggestions.size()) {
return;
}
auto footer_container =
views::Builder<views::BoxLayoutView>()
.SetOrientation(views::BoxLayout::Orientation::kVertical)
.SetBackground(
views::CreateSolidBackground(ui::kColorDropdownBackground))
.Build();
if (IsFooterScrollable()) {
footer_container_ =
body_container_->AddChildView(std::move(footer_container));
} else {
// Add a separator between the main list of suggestions and the footer with
// no vertical padding as these elements have their own top/bottom paddings.
if (suggestions[current_line_number].type == SuggestionType::kSeparator) {
rows_.push_back(suggestions_container_->AddChildView(
std::make_unique<PopupSeparatorView>(/*vertical_padding=*/0)));
++current_line_number;
}
footer_container_ =
suggestions_container_->AddChildView(std::move(footer_container));
footer_container_->SetInsideBorderInsets(
gfx::Insets::VH(kInterItemsPadding, 0));
suggestions_container_->SetFlexForView(footer_container_, 0);
}
for (; current_line_number < suggestions.size(); ++current_line_number) {
DCHECK(IsFooterItem(suggestions, current_line_number));
// The footer can contain either footer views or separator lines.
if (suggestions[current_line_number].type == SuggestionType::kSeparator) {
rows_.push_back(footer_container_->AddChildView(
std::make_unique<PopupSeparatorView>(kInterItemsPadding)));
} else {
rows_.push_back(footer_container_->AddChildView(CreatePopupRowView(
controller(), /*a11y_selection_delegate=*/*this,
/*selection_delegate=*/*this, current_line_number)));
}
}
// Adjust the scrollable area height. Make sure this adjustment always goes
// after changes that can affect `body_container_`'s size.
if (scroll_view_ && body_container_ && IsFooterScrollable()) {
scroll_view_->ClipHeightTo(
0, body_container_->GetHeightForWidth(kAutofillPopupMaxWidth));
}
}
gfx::Size PopupViewViews::CalculatePreferredSize(
const views::SizeBounds& available_size) const {
gfx::Size size = views::View::CalculatePreferredSize(available_size);
if (size.width() > kAutofillPopupMaxWidth) {
// TODO(crbug.com/40232718): When we set the vertical axis to stretch,
// BoxLayout will occupy the entire vertical axis size. Two calculations are
// needed to correct this.
//
// Following crrev.com/c/5828724, the dialog box will fit the text more
// closely. But this will break the pixel test, so make it a fixed size.
size = views::View::CalculatePreferredSize(
views::SizeBounds(kAutofillPopupMaxWidth, {}));
size.set_width(kAutofillPopupMaxWidth);
}
// This popup height limiting for popups with a search bar addresses a minor
// UX concern when a potentially long list makes the search bar appear far
// away from the field and thus less obvious what the search bar belongs to.
if (search_bar_) {
size.set_height(std::min(kMaxPopupWithSearchBarHeight, size.height()));
}
return size;
}
bool PopupViewViews::DoUpdateBoundsAndRedrawPopup() {
return DoUpdateBoundsAndRedrawPopup(/*prefer_prev_arrow_side=*/false);
}
bool PopupViewViews::DoUpdateBoundsAndRedrawPopup(bool prefer_prev_arrow_side) {
gfx::Size preferred_size = CalculatePreferredSize({});
gfx::Rect popup_bounds;
const gfx::Rect content_area_bounds = GetContentAreaBounds();
// TODO(crbug.com/40799454) Once popups can render outside the main window on
// Linux, use the screen bounds.
const gfx::Rect top_window_bounds = GetTopWindowBounds();
const gfx::Rect& max_bounds_for_popup =
PopupMayExceedContentAreaBounds(controller_->GetWebContents())
? top_window_bounds
: content_area_bounds;
gfx::Rect element_bounds =
gfx::ToEnclosingRect(controller_->element_bounds());
// An element that is contained by the `content_area_bounds` (even if empty,
// which means either the height or the width is 0) is never outside the
// content area. An empty element case can happen with caret bounds, which
// sometimes has 0 width.
if (!content_area_bounds.Contains(element_bounds)) {
// If the element exceeds the content area, ensure that the popup is still
// visually attached to the input element.
element_bounds.Intersect(content_area_bounds);
if (element_bounds.IsEmpty()) {
controller_->Hide(SuggestionHidingReason::kElementOutsideOfContentArea);
return false;
}
}
// Consider the element is |kElementBorderPadding| pixels larger at the top
// and at the bottom in order to reposition the dropdown, so that it doesn't
// look too close to the element.
element_bounds.Inset(
gfx::Insets::VH(/*vertical=*/-kElementBorderPadding, /*horizontal=*/0));
if ((!body_container_ || body_container_->children().empty()) &&
(!footer_container_ || footer_container_->children().empty())) {
controller_->Hide(SuggestionHidingReason::kNoSuggestions);
return false;
}
if (!CanShowDropdownInBounds(max_bounds_for_popup)) {
controller_->Hide(SuggestionHidingReason::kInsufficientSpace);
return false;
}
CalculatePopupYAndHeight(preferred_size.height(), max_bounds_for_popup,
element_bounds, &popup_bounds);
// Adjust the width to compensate for a scroll bar, if necessary, and for
// other rules.
int scroll_width = 0;
if (scroll_view_ && preferred_size.height() > popup_bounds.height()) {
preferred_size.set_height(popup_bounds.height());
// Because the preferred size is greater than the bounds available, the
// contents will have to scroll. The scroll bar will steal width from the
// content and smoosh everything together. Instead, add to the width to
// compensate.
scroll_width = scroll_view_->GetScrollBarLayoutWidth();
}
preferred_size.set_width(std::clamp(preferred_size.width() + scroll_width,
kAutofillPopupMinWidth,
kAutofillPopupMaxWidth));
views::BubbleBorder* border = static_cast<views::BubbleBorder*>(
GetWidget()->GetRootView()->GetBorder());
std::vector<views::BubbleArrowSide> preferred_popup_sides =
GetPreferredPopupSides(
/*is_root_popup=*/!parent_, prefer_prev_arrow_side,
/*prev_arrow=*/border ? border->arrow() : BubbleBorder::Arrow::NONE);
popup_bounds = GetOptimalPositionAndPlaceArrowOnPopup(
element_bounds, content_area_bounds, preferred_size,
preferred_popup_sides);
if (BoundsOverlapWithAnyOpenPrompt(popup_bounds,
controller_->GetWebContents())) {
controller_->Hide(SuggestionHidingReason::kOverlappingWithAnotherPrompt);
return false;
}
// On Windows, due to platform-specific implementation details, the previous
// check isn't reliable, and fails to detect open prompts. Since the most
// critical bubble is the permission bubble, we check for that specifically.
if (BoundsOverlapWithOpenPermissionsPrompt(popup_bounds,
controller_->GetWebContents())) {
controller_->Hide(SuggestionHidingReason::kOverlappingWithAnotherPrompt);
return false;
}
// The pip surface is given the most preference while rendering. So, the
// autofill popup should not be shown when the picture in picture window
// hides the autofill form behind it.
// For more details on how this can happen, see crbug.com/1358647.
if (BoundsOverlapWithPictureInPictureWindow(popup_bounds)) {
controller_->Hide(
SuggestionHidingReason::kOverlappingWithPictureInPictureWindow);
return false;
}
SetSize(preferred_size);
popup_bounds.Inset(-GetWidget()->GetRootView()->GetInsets());
GetWidget()->SetBounds(popup_bounds);
UpdateClipPath();
SchedulePaint();
return true;
}
void PopupViewViews::OnMouseEnteredInChildren() {
if (parent_ && parent_->get()) {
parent_->get()->OnMouseEnteredInChildren();
}
// Cancel scheluled sub-popup closing.
no_selection_sub_popup_close_timer_.Stop();
}
void PopupViewViews::OnMouseExitedInChildren() {
if (GetSelectedCell()) {
return;
}
if (parent_ && parent_->get()) {
parent_->get()->OnMouseExitedInChildren();
}
// Schedule sub-popup closing.
no_selection_sub_popup_close_timer_.Start(
FROM_HERE, kNoSelectionHideSubPopupDelay,
base::BindRepeating(&PopupViewViews::SetRowWithOpenSubPopup,
weak_ptr_factory_.GetWeakPtr(), std::nullopt,
AutoselectFirstSuggestion(false)));
}
bool PopupViewViews::IsFooterScrollable() const {
// Footer items of a root popup are expected to be more prioritized and
// therefore "sticky", i.e. not being scrollable with the whole popup content.
// `body_container_` is the container of regular suggestions, it must exist
// to place the footer there and thus make it scrollable too.
return parent_ && body_container_;
}
bool PopupViewViews::CanShowDropdownInBounds(const gfx::Rect& bounds) const {
gfx::Rect element_bounds =
gfx::ToEnclosingRect(controller_->element_bounds());
// At least one suggestion and the sticky footer should be shown in the bounds
// of the content area so that the user notices the presence of the popup.
int min_height = 0;
if (body_container_ && !body_container_->children().empty()) {
min_height += body_container_->children()[0]->GetPreferredSize().height();
}
if (search_bar_) {
min_height += search_bar_->GetPreferredSize().height();
}
if (footer_container_ && !footer_container_->children().empty() &&
!IsFooterScrollable()) {
// The footer is not scrollable, its full height should be considered.
min_height += footer_container_->GetPreferredSize().height();
}
return CanShowDropdownHere(min_height, bounds, element_bounds);
}
void PopupViewViews::SetRowWithOpenSubPopup(
std::optional<size_t> row_index,
AutoselectFirstSuggestion autoselect_first_suggestion) {
if (!controller_) {
return;
}
if (row_with_open_sub_popup_ == row_index) {
return;
}
// Close previously open sub-popup if any.
if (row_with_open_sub_popup_ &&
HasSelectablePopupRowViewAt(*row_with_open_sub_popup_)) {
controller_->HideSubPopup();
GetPopupRowViewAt(*row_with_open_sub_popup_)
.SetChildSuggestionsDisplayed(false);
row_with_open_sub_popup_ = std::nullopt;
}
// Open a sub-popup on the new cell if provided.
if (row_index && HasSelectablePopupRowViewAt(*row_index)) {
const Suggestion& suggestion = controller_->GetSuggestionAt(*row_index);
CHECK(!suggestion.children.empty());
PopupRowView& row = GetPopupRowViewAt(*row_index);
if (controller_->OpenSubPopup(row.GetControlCellBounds(),
suggestion.children,
autoselect_first_suggestion)) {
row.SetChildSuggestionsDisplayed(true);
row_with_open_sub_popup_ = row_index;
if (autoselect_first_suggestion) {
row.SetSelectedCell(std::nullopt);
}
}
}
}
bool PopupViewViews::SelectParentPopupContentCell() {
if (!row_with_open_sub_popup_) {
return false;
}
size_t row_index = *row_with_open_sub_popup_;
// Closing the sub-popup by setting `std::nullopt` is required as
// `suppress_popup=true` is not enough: the sub-popup closing will be
// prevented by the "same value" check.
SetRowWithOpenSubPopup(std::nullopt);
SetSelectedCell(CellIndex{row_index, PopupRowView::CellType::kContent},
PopupCellSelectionSource::kKeyboard,
AutoselectFirstSuggestion(false),
/*suppress_popup=*/true);
return true;
}
void PopupViewViews::MaybeA11yFocusInformationalSuggestion() {
if (rows_.size() != 1) {
return;
}
if (auto* warning_view = std::get_if<PopupWarningView*>(&rows_[0]);
warning_view && *warning_view) {
NotifyAXSelection(**warning_view);
(*warning_view)
->NotifyAccessibilityEventDeprecated(ax::mojom::Event::kFocus, true);
}
}
base::WeakPtr<AutofillPopupView> PopupViewViews::GetWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
BEGIN_METADATA(PopupViewViews)
END_METADATA
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(
PopupViewViews,
kAutofillBnplAffirmOrZipSuggestionElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(PopupViewViews,
kAutofillCreditCardBenefitElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(
PopupViewViews,
kAutofillCreditCardSuggestionEntryElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(PopupViewViews,
kAutofillAiOptInIphElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(
PopupViewViews,
kAutofillStandaloneCvcSuggestionElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(PopupViewViews,
kAutofillSuggestionElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(PopupViewViews,
kAutofillHomeWorkSuggestionElementId);
DEFINE_CLASS_ELEMENT_IDENTIFIER_VALUE(PopupViewViews,
kAutofillEnableLoyaltyCardsElementId);
// static
base::WeakPtr<AutofillPopupView> AutofillPopupView::Create(
base::WeakPtr<AutofillSuggestionController> controller,
std::optional<const AutofillPopupView::SearchBarConfig> search_bar_config) {
if (!controller || !CanShowRootPopup(*controller)) {
return nullptr;
}
// On Desktop, all controllers are `AutofillPopupController`s.
return (new PopupViewViews(
static_cast<AutofillPopupController&>(*controller).GetWeakPtr(),
std::move(search_bar_config)))
->GetWeakPtr();
}
} // namespace autofill
|