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..a2743421a881054178024454949e9743c46f5b85 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/editing/markers/GrammarMarkerListImpl.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 GrammarMarkerListImpl_h |
| +#define GrammarMarkerListImpl_h |
| + |
| +#include "core/editing/markers/SpellCheckMarkerListImpl.h" |
| + |
| +namespace blink { |
| + |
| +// This is the DocumentMarkerList implementation used to store Grammar markers. |
| +class CORE_EXPORT GrammarMarkerListImpl final |
| + : public SpellCheckMarkerListImpl { |
| + public: |
| + GrammarMarkerListImpl() = default; |
| + |
| + DocumentMarker::MarkerType MarkerType() const final; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(GrammarMarkerListImpl); |
|
yosin_UTC9
2017/05/16 01:20:49
nit: |DISALLOW_COPY_AND_ASSIGN()| should be in pri
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // GrammarMarkerListImpl_h |