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

Unified Diff: ui/views/accessibility/ax_aura_obj_cache.cc

Issue 2803823002: Fix Chrome OS virtual keyboard accessibility (Closed)
Patch Set: Created 3 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
Index: ui/views/accessibility/ax_aura_obj_cache.cc
diff --git a/ui/views/accessibility/ax_aura_obj_cache.cc b/ui/views/accessibility/ax_aura_obj_cache.cc
index ad9df5c9fdd4d75a1b1e802c85352dd1de7f41f0..4a7ac840c95f3d33097cc020b9d87fcc873f2b68 100644
--- a/ui/views/accessibility/ax_aura_obj_cache.cc
+++ b/ui/views/accessibility/ax_aura_obj_cache.cc
@@ -124,6 +124,12 @@ void AXAuraObjCache::OnFocusedViewChanged() {
view->NotifyAccessibilityEvent(ui::AX_EVENT_FOCUS, true);
}
+void AXAuraObjCache::FireEvent(AXAuraObjWrapper* aura_obj,
+ ui::AXEvent event_type) {
+ if (delegate_)
+ delegate_->OnEvent(aura_obj, event_type);
+}
+
AXAuraObjCache::AXAuraObjCache()
: current_id_(1),
focus_client_(nullptr),

Powered by Google App Engine
This is Rietveld 408576698