Index: third_party/WebKit/Source/core/editing/markers/SpellCheckMarker.cpp |
diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarker.cpp b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarker.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..55694c7b2dd5600672018809c3a578ec5e786eef |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarker.cpp |
@@ -0,0 +1,31 @@ |
+// 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. |
+ |
+#include "core/editing/markers/SpellCheckMarker.h" |
+ |
+namespace blink { |
+ |
+SpellCheckMarker::SpellCheckMarker(DocumentMarker::MarkerType type, |
+ unsigned startOffset, |
+ unsigned endOffset, |
+ const String& description) |
+ : DocumentMarker(startOffset, endOffset), |
+ m_type(type), |
+ m_description(description) { |
+ DCHECK(type == DocumentMarker::Spelling || type == DocumentMarker::Grammar); |
+} |
+ |
+SpellCheckMarker* SpellCheckMarker::clone() const { |
+ return new SpellCheckMarker(*this); |
+} |
+ |
+DocumentMarker::MarkerType SpellCheckMarker::type() const { |
+ return m_type; |
+} |
+ |
+const String& SpellCheckMarker::description() const { |
+ return m_description; |
+} |
+ |
+} // namespace blink |