Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/markers/CompositionMarkerList.h |
| diff --git a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerList.h b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerList.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6165d8dfb4f7402b6b868ef3ae02b9bc7d6e76ed |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerList.h |
| @@ -0,0 +1,23 @@ |
| +// 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 CompositionMarkerList_h |
| +#define CompositionMarkerList_h |
| + |
| +#include "core/editing/markers/EditingMarkerList.h" |
| + |
| +namespace blink { |
| + |
| +class CORE_EXPORT CompositionMarkerList final : public EditingMarkerList { |
| + public: |
| + explicit CompositionMarkerList(); |
| + |
| + DocumentMarker::MarkerType allowedMarkerType() const final; |
|
Xiaocheng
2017/03/27 22:40:01
nit: move it to |private|
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(CompositionMarkerList); |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // CompositionMarkerList_h |