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

Unified Diff: ui/accessibility/platform/ax_platform_node.cc

Issue 2119413004: a11y: Exclude children of nested keyboard accessible controls from a11y tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CrOS. Created 3 years, 10 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/accessibility/platform/ax_platform_node.cc
diff --git a/ui/accessibility/platform/ax_platform_node.cc b/ui/accessibility/platform/ax_platform_node.cc
index adfcc1e2ad2f2059b4f9d299242e7378e19fcc0c..58de0e32277e31e138569e3422b1b1d042c9e322 100644
--- a/ui/accessibility/platform/ax_platform_node.cc
+++ b/ui/accessibility/platform/ax_platform_node.cc
@@ -26,9 +26,7 @@ base::LazyInstance<UniqueIdMap> g_unique_id_map =
AXPlatformNode* AXPlatformNode::Create(AXPlatformNodeDelegate* delegate) {
return nullptr;
}
-#endif // !defined(PLATFORM_HAS_AX_PLATFORM_NODE_IMPL)
-#if !defined(OS_WIN)
// This is the default implementation for platforms where native views
// accessibility is unsupported or unfinished.
//
@@ -37,7 +35,7 @@ AXPlatformNode* AXPlatformNode::FromNativeViewAccessible(
gfx::NativeViewAccessible accessible) {
return nullptr;
}
-#endif
+#endif // !defined(PLATFORM_HAS_AX_PLATFORM_NODE_IMPL)
// static
int32_t AXPlatformNode::GetNextUniqueId() {

Powered by Google App Engine
This is Rietveld 408576698