| Index: third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
|
| index ad26bac789b5ef632c51b733a304ef8f744060ed..2731906a004bd9e7ba0bea4c3764eb61cc7aceac 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarkerListImplTest.cpp
|
| @@ -5,7 +5,6 @@
|
| #include "core/editing/markers/TextMatchMarkerListImpl.h"
|
|
|
| #include "core/editing/EditingTestBase.h"
|
| -#include "core/editing/markers/TextMatchMarker.h"
|
|
|
| namespace blink {
|
|
|
| @@ -14,8 +13,8 @@
|
| TextMatchMarkerListImplTest() : marker_list_(new TextMatchMarkerListImpl()) {}
|
|
|
| DocumentMarker* CreateMarker(unsigned start_offset, unsigned end_offset) {
|
| - return new TextMatchMarker(start_offset, end_offset,
|
| - DocumentMarker::MatchStatus::kInactive);
|
| + return new DocumentMarker(start_offset, end_offset,
|
| + DocumentMarker::MatchStatus::kInactive);
|
| }
|
|
|
| Persistent<TextMatchMarkerListImpl> marker_list_;
|
|
|