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

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

Issue 2923033002: [ActiveSuggestionMarker #2] Add ActiveSuggestionMarker (Closed)
Patch Set: 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/ActiveSuggestionMarker.h
diff --git a/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarker.h b/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarker.h
new file mode 100644
index 0000000000000000000000000000000000000000..ea17031bc974b84097dbfba04abc07918a83222c
--- /dev/null
+++ b/third_party/WebKit/Source/core/editing/markers/ActiveSuggestionMarker.h
@@ -0,0 +1,40 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ActiveSuggestionMarker_h
+#define ActiveSuggestionMarker_h
+
+#include "core/editing/markers/StyleableMarker.h"
+
+namespace blink {
+
+// A subclass of DocumentMarker used to store information specific to
+// composition markers. We store what color to display the underline (possibly
+// transparent), whether the underline should be thick or not, and what
+// background color should be used under the marked text (also possibly
+// transparent).
+class CORE_EXPORT ActiveSuggestionMarker final : public StyleableMarker {
+ public:
+ ActiveSuggestionMarker(unsigned start_offset,
+ unsigned end_offset,
+ Color underline_color,
+ Thickness,
+ Color background_color);
+
+ // DocumentMarker implementations
+ MarkerType GetType() const;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ActiveSuggestionMarker);
+};
+
+DEFINE_TYPE_CASTS(ActiveSuggestionMarker,
+ DocumentMarker,
+ marker,
+ marker->GetType() == DocumentMarker::kActiveSuggestion,
+ marker.GetType() == DocumentMarker::kActiveSuggestion);
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698