| Index: third_party/WebKit/Source/core/editing/markers/SpellingMarkerListImpl.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/SpellingMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/SpellingMarkerListImpl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..936e94a04f2c910c655af0f90fd388308844d650
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/editing/markers/SpellingMarkerListImpl.h
|
| @@ -0,0 +1,25 @@
|
| +// 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 SpellingMarkerListImpl_h
|
| +#define SpellingMarkerListImpl_h
|
| +
|
| +#include "core/editing/markers/SpellCheckMarkerListImpl.h"
|
| +
|
| +namespace blink {
|
| +
|
| +// This is the DocumentMarkerList implementation used to store Spelling markers.
|
| +class CORE_EXPORT SpellingMarkerListImpl final
|
| + : public SpellCheckMarkerListImpl {
|
| + public:
|
| + SpellingMarkerListImpl() = default;
|
| +
|
| + DocumentMarker::MarkerType MarkerType() const final;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(SpellingMarkerListImpl);
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // SpellingMarkerListImpl_h
|
|
|