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

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

Issue 1578293003: Fullscreen bubble: Now speaks the bubble text if a11y enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 6 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
« no previous file with comments | « chrome/browser/ui/views/subtle_notification_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/accessibility/ax_view_obj_wrapper.cc
diff --git a/ui/views/accessibility/ax_view_obj_wrapper.cc b/ui/views/accessibility/ax_view_obj_wrapper.cc
index 3ea1e04efb2fe687a8ff4e72c6a43c4b1923c966..ad9b8fab76b516bfd16d49b4ce587322d71c3e67 100644
--- a/ui/views/accessibility/ax_view_obj_wrapper.cc
+++ b/ui/views/accessibility/ax_view_obj_wrapper.cc
@@ -64,6 +64,8 @@ void AXViewObjWrapper::Serialize(ui::AXNodeData* out_node_data) {
ui::AX_ATTR_NAME, base::UTF16ToUTF8(view_data.name));
out_node_data->AddStringAttribute(
ui::AX_ATTR_VALUE, base::UTF16ToUTF8(view_data.value));
+ LOG(ERROR) << "AXViewObjWrapper: AddStringAttribute: AX_ATTR_NAME = \""
+ << view_data.name << "\"";
if (view_data.selection_start > -1 && view_data.selection_end > -1) {
out_node_data->AddIntAttribute(ui::AX_ATTR_TEXT_SEL_START,
« no previous file with comments | « chrome/browser/ui/views/subtle_notification_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698