| Index: third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
|
| index dcd94cd063b4792a022d5552fc691a95c2458f13..5a6e3239cdbe2a1be429de73616e96af91c04af9 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/CompositionMarkerListImplTest.cpp
|
| @@ -5,6 +5,7 @@
|
| #include "core/editing/markers/CompositionMarkerListImpl.h"
|
|
|
| #include "core/editing/EditingTestBase.h"
|
| +#include "core/editing/markers/CompositionMarker.h"
|
|
|
| namespace blink {
|
|
|
| @@ -14,8 +15,8 @@ class CompositionMarkerListImplTest : public EditingTestBase {
|
| : marker_list_(new CompositionMarkerListImpl()) {}
|
|
|
| DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
|
| - return new DocumentMarker(start_offset, end_offset, Color::kBlack, false,
|
| - Color::kBlack);
|
| + return new CompositionMarker(start_offset, end_offset, Color::kBlack, false,
|
| + Color::kBlack);
|
| }
|
|
|
| Persistent<CompositionMarkerListImpl> marker_list_;
|
|
|