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

Unified Diff: third_party/WebKit/public/web/WebAXEnums.h

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
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebAXEnums.h
diff --git a/third_party/WebKit/public/web/WebAXEnums.h b/third_party/WebKit/public/web/WebAXEnums.h
index 23d5cf741c8f442c74b0395184f4c97751b16a3f..1f97e0a878432b7f333b05eabe51e7290bf7fe46 100644
--- a/third_party/WebKit/public/web/WebAXEnums.h
+++ b/third_party/WebKit/public/web/WebAXEnums.h
@@ -304,7 +304,9 @@ enum WebAXInvalidState {
enum WebAXMarkerType {
kWebAXMarkerTypeSpelling = 1 << 0,
kWebAXMarkerTypeGrammar = 1 << 1,
- kWebAXMarkerTypeTextMatch = 1 << 2
+ kWebAXMarkerTypeTextMatch = 1 << 2,
+ // Skip DocumentMarker::MarkerType::Composition
+ kWebAXMarkerTypeActiveSuggestion = 1 << 4,
};
// Used for exposing text attributes.
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698