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

Unified Diff: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h

Issue 2923033002: [ActiveSuggestionMarker #2] Add ActiveSuggestionMarker (Closed)
Patch Set: Update comment on ActiveSuggestionMarker.h 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/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

Powered by Google App Engine
This is Rietveld 408576698