Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/markers/GrammarMarkerListImpl.h |
| diff --git a/third_party/WebKit/Source/core/editing/markers/GrammarMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/GrammarMarkerListImpl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..af5c090fee8d1fa6f0f69d5878be488a229593a6 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/editing/markers/GrammarMarkerListImpl.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 GrammarMarkerListImpl_h |
| +#define GrammarMarkerListImpl_h |
| + |
| +#include "core/editing/markers/SpellCheckMarkerListImpl.h" |
| + |
| +namespace blink { |
| + |
| +class GrammarMarkerListImpl : public SpellCheckMarkerListImpl { |
|
yosin_UTC9
2017/05/12 05:00:04
Please add class documentation.
nit: s/:/final : /
|
| + public: |
| + DocumentMarker::MarkerType MarkerType() const; |
|
yosin_UTC9
2017/05/12 05:00:03
nit: s/const/const final/
|
| +}; |
|
yosin_UTC9
2017/05/12 05:00:04
We should have DISALLOW_COPY_AND_ASSIGN()
|
| + |
| +} // namespace blink |
| + |
| +#endif // GrammarMarkerListImpl_h |