Index: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
index 7440daed779ea1447807be2a830ffb9f78ff13a0..ba638a4bb283e9b2e6a08f95952b6ced75ad33a9 100644 |
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
@@ -43,6 +43,7 @@ class CORE_EXPORT DocumentMarker |
kGrammarMarkerIndex, |
kTextMatchMarkerIndex, |
kCompositionMarkerIndex, |
+ kActiveSuggestionMarkerIndex, |
kMarkerTypeIndexesCount |
}; |
@@ -51,6 +52,7 @@ class CORE_EXPORT DocumentMarker |
kGrammar = 1 << kGrammarMarkerIndex, |
kTextMatch = 1 << kTextMatchMarkerIndex, |
kComposition = 1 << kCompositionMarkerIndex, |
+ kActiveSuggestion = 1 << kActiveSuggestionMarkerIndex, |
}; |
class MarkerTypesIterator |