| Index: third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.cpp b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.cpp
|
| index 141f787c02dc3684a7224c2ac8d39e37ea8d22c1..514256a324c4562a8b85c0c09451c5ab6a0344d0 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.cpp
|
| @@ -9,6 +9,14 @@
|
|
|
| namespace blink {
|
|
|
| +SpellCheckMarkerListImpl::SpellCheckMarkerListImpl(
|
| + DocumentMarker::MarkerType marker_type)
|
| + : marker_type_(marker_type) {}
|
| +
|
| +DocumentMarker::MarkerType SpellCheckMarkerListImpl::MarkerType() const {
|
| + return marker_type_;
|
| +}
|
| +
|
| bool SpellCheckMarkerListImpl::IsEmpty() const {
|
| return markers_.IsEmpty();
|
| }
|
|
|