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: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp

Issue 2931473002: [ActiveSuggestionMarker #2.5] Handle ActiveSuggestionMarkers for accessibility (Closed)
Patch Set: Add TODO Created 3 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
Index: third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
index ae959a2a780417af133ee0b464e3bfcfd269f6d4..72ad994580e7f3a17c35bc3f0efd1ece91890cf9 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.cpp
@@ -1414,13 +1414,12 @@ void AXNodeObject::Markers(Vector<DocumentMarker::MarkerType>& marker_types,
case DocumentMarker::kSpelling:
case DocumentMarker::kGrammar:
case DocumentMarker::kTextMatch:
+ case DocumentMarker::kActiveSuggestion:
marker_types.push_back(marker->GetType());
marker_ranges.push_back(
AXRange(marker->StartOffset(), marker->EndOffset()));
break;
case DocumentMarker::kComposition:
- // TODO(rlanday): add accessibility support for kActiveSuggestion
- case DocumentMarker::kActiveSuggestion:
// No need for accessibility to know about these marker types.
break;
}
« no previous file with comments | « content/renderer/accessibility/blink_ax_enum_conversion.cc ('k') | third_party/WebKit/Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698