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

Unified Diff: chrome/browser/ui/views/autofill/autofill_popup_view_views.cc

Issue 2727233003: Uses child views in Autofill Popup so we can trigger (Closed)
Patch Set: Uses base::Optional<size_t> instead of representing no selection as -1. Created 3 years, 9 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
Index: chrome/browser/ui/views/autofill/autofill_popup_view_views.cc
diff --git a/chrome/browser/ui/views/autofill/autofill_popup_view_views.cc b/chrome/browser/ui/views/autofill/autofill_popup_view_views.cc
index 89925cee23efa839e82e4105a6ff2f6b6bc68806..003986b83fcc48b71614947776c313489a84894a 100644
--- a/chrome/browser/ui/views/autofill/autofill_popup_view_views.cc
+++ b/chrome/browser/ui/views/autofill/autofill_popup_view_views.cc
@@ -4,10 +4,14 @@
#include "chrome/browser/ui/views/autofill/autofill_popup_view_views.h"
+#include "base/optional.h"
#include "chrome/browser/ui/autofill/autofill_popup_controller.h"
#include "chrome/browser/ui/autofill/autofill_popup_layout_model.h"
+#include "chrome/grit/generated_resources.h"
#include "components/autofill/core/browser/popup_item_ids.h"
#include "components/autofill/core/browser/suggestion.h"
+#include "ui/accessibility/ax_node_data.h"
+#include "ui/base/l10n/l10n_util.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/geometry/point.h"
@@ -16,30 +20,78 @@
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/text_utils.h"
#include "ui/views/border.h"
+#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
namespace autofill {
+namespace {
+
+// Child view only for triggering accessibility events. Rendering is handled
+// by |AutofillPopupViewViews|.
+class AutofillPopupChildView : public views::View {
+ public:
+ // Internal class name.
+ static const char kViewClassName[];
+
+ // |controller| should not be NULL.
Evan Stade 2017/03/16 17:39:00 in this case you can probably make controller_ (an
csashi 2017/03/16 22:42:06 Done.
+ AutofillPopupChildView(AutofillPopupController* controller, size_t index)
+ : controller_(controller), index_(index) {
+ SetFocusBehavior(FocusBehavior::ALWAYS);
+ }
+
+ private:
+ ~AutofillPopupChildView() override {}
+
+ // views::Views implementation
+ const char* GetClassName() const override { return kViewClassName; }
+
+ void GetAccessibleNodeData(ui::AXNodeData* node_data) override {
+ node_data->role = ui::AX_ROLE_MENU_ITEM;
+ node_data->SetName(controller_->GetSuggestionAt(index_).value);
+ }
+
+ AutofillPopupController* controller_; // Weak reference.
+ const size_t index_;
+
+ DISALLOW_COPY_AND_ASSIGN(AutofillPopupChildView);
+};
+
+// static
+const char AutofillPopupChildView::kViewClassName[] = "AutofillPopupChildView";
+
+} // namespace
+
AutofillPopupViewViews::AutofillPopupViewViews(
AutofillPopupController* controller,
views::Widget* parent_widget)
: AutofillPopupBaseView(controller, parent_widget),
- controller_(controller) {}
+ controller_(controller) {
+ CreateChildViews();
+ SetFocusBehavior(FocusBehavior::ALWAYS);
+}
AutofillPopupViewViews::~AutofillPopupViewViews() {}
void AutofillPopupViewViews::Show() {
DoShow();
+ NotifyAccessibilityEvent(ui::AX_EVENT_MENU_START, true);
}
void AutofillPopupViewViews::Hide() {
// The controller is no longer valid after it hides us.
controller_ = NULL;
-
DoHide();
+ NotifyAccessibilityEvent(ui::AX_EVENT_MENU_END, true);
}
-void AutofillPopupViewViews::UpdateBoundsAndRedrawPopup() {
+void AutofillPopupViewViews::OnSuggestionsChanged() {
+ // We recreate the child views so we can be sure the |controller_|'s
+ // |GetLineCount()| will match the number of child views. Otherwise,
+ // the number of suggestions i.e. |GetLineCount()| may not match 1x1 with the
+ // child views. See crbug.com/697466.
+ RemoveAllChildViews(true /* delete_children */);
Evan Stade 2017/03/16 17:39:00 nit: seems like this should be inside CreateChildV
csashi 2017/03/16 22:42:06 Done.
+ CreateChildViews();
DoUpdateBoundsAndRedrawPopup();
}
@@ -51,6 +103,7 @@ void AutofillPopupViewViews::OnPaint(gfx::Canvas* canvas) {
ui::NativeTheme::kColorId_ResultsTableNormalBackground));
OnPaintBorder(canvas);
+ DCHECK_EQ(controller_->GetLineCount(), static_cast<size_t>(child_count()));
for (size_t i = 0; i < controller_->GetLineCount(); ++i) {
gfx::Rect line_rect = controller_->layout_model().GetRowBounds(i);
@@ -66,8 +119,26 @@ void AutofillPopupViewViews::OnPaint(gfx::Canvas* canvas) {
}
}
-void AutofillPopupViewViews::InvalidateRow(size_t row) {
- SchedulePaintInRect(controller_->layout_model().GetRowBounds(row));
+void AutofillPopupViewViews::OnSelectedRowChanged(
+ base::Optional<size_t> previous_row_selection,
+ base::Optional<size_t> current_row_selection) {
+ if (previous_row_selection &&
+ previous_row_selection < controller_->GetLineCount()) {
Evan Stade 2017/03/16 17:39:00 why is this second check required?
csashi 2017/03/16 22:42:06 Because the previous_row_selection could be for a
Evan Stade 2017/03/17 14:11:55 but that check looks like it turned into a dcheck
csashi 2017/03/17 16:30:35 The dcheck in the controller is for the newly sele
Evan Stade 2017/03/17 19:08:54 fair enough, but I think somewhere in Show() you s
csashi 2017/03/17 21:55:21 Done.
+ SchedulePaintInRect(controller_->layout_model().GetRowBounds(
+ previous_row_selection.value()));
+ }
+
+ if (current_row_selection) {
+ SchedulePaintInRect(controller_->layout_model().GetRowBounds(
+ current_row_selection.value()));
Evan Stade 2017/03/16 17:39:00 s/current_row_selection.value()/*current_row_selec
csashi 2017/03/16 22:42:06 Done.
+ DCHECK_LT(current_row_selection.value(),
+ static_cast<size_t>(child_count()));
+ views::View* child = child_at(current_row_selection.value());
+ DCHECK_EQ(child->GetClassName(), AutofillPopupChildView::kViewClassName);
Evan Stade 2017/03/16 17:39:00 not sure this is necessary
csashi 2017/03/16 22:42:06 Acknowledged. A previous reviewer asked that I add
Evan Stade 2017/03/17 14:11:55 I mean, lots of things would break then right, lik
csashi 2017/03/17 16:30:35 Done.
+ AutofillPopupChildView* child_view =
+ static_cast<AutofillPopupChildView*>(child);
Evan Stade 2017/03/17 14:11:55 nit: do you need this cast?
csashi 2017/03/17 16:30:35 Done.
+ child_view->NotifyAccessibilityEvent(ui::AX_EVENT_SELECTION, true);
+ }
}
/**
@@ -189,6 +260,19 @@ void AutofillPopupViewViews::DrawAutofillEntry(gfx::Canvas* canvas,
}
}
+void AutofillPopupViewViews::GetAccessibleNodeData(ui::AXNodeData* node_data) {
+ node_data->role = ui::AX_ROLE_MENU;
+ node_data->SetName(
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_POPUP_ACCESSIBLE_NODE_DATA));
+}
+
+void AutofillPopupViewViews::CreateChildViews() {
+ for (size_t i = 0; i < controller_->GetLineCount(); ++i) {
+ AutofillPopupChildView* child = new AutofillPopupChildView(controller_, i);
+ AddChildView(child);
Evan Stade 2017/03/16 17:39:00 nit: combine these two lines.
csashi 2017/03/16 22:42:06 Done.
+ }
+}
+
AutofillPopupView* AutofillPopupView::Create(
AutofillPopupController* controller) {
views::Widget* observing_widget =

Powered by Google App Engine
This is Rietveld 408576698