Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/markers/SpellingMarker.h |
| diff --git a/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h b/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..46efadacd804a7243e63c763229f823b6f9a5281 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/editing/markers/SpellingMarker.h |
| @@ -0,0 +1,21 @@ |
| +// 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 SpellingMarker_h |
| +#define SpellingMarker_h |
| + |
| +#include "core/editing/markers/SpellCheckMarker.h" |
| + |
| +namespace blink { |
| + |
| +class CORE_EXPORT SpellingMarker final : public SpellCheckMarker { |
|
yosin_UTC9
2017/06/01 03:29:12
Please add a class comment.
|
| + public: |
| + SpellingMarker(unsigned start_offset, |
| + unsigned end_offset, |
| + const String& description); |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif |