1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "third_party/blink/renderer/core/editing/markers/spelling_marker_list_impl.h"
6 
7 namespace blink {
8 
MarkerType() const9 DocumentMarker::MarkerType SpellingMarkerListImpl::MarkerType() const {
10   return DocumentMarker::kSpelling;
11 }
12 
13 }  // namespace blink
14