Chromium Code Reviews| 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..592ea330b03189fde6bf0eea4e8f59b6e0a86ea3 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/editing/markers/SpellingMarkerListImpl.h |
| @@ -0,0 +1,19 @@ |
| +// 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 { |
| + |
| +class SpellingMarkerListImpl : public SpellCheckMarkerListImpl { |
|
yosin_UTC9
2017/05/12 05:00:04
Please have class comment.
nit: s/:/ final :/
|
| + public: |
| + DocumentMarker::MarkerType MarkerType() const; |
|
yosin_UTC9
2017/05/12 05:00:04
nit: s/const/const final/
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // SpellingMarkerListImpl_h |