| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditorTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditorTest.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditorTest.cpp
|
| index 87a5818d657b51741caaf300deafc7f88c00266d..a1976a15053f0ed2f699f45a2c6f4d55ba1ca762 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditorTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerListEditorTest.cpp
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "core/editing/markers/DocumentMarkerListEditor.h"
|
|
|
| +#include "core/editing/markers/TextMatchMarker.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace blink {
|
| @@ -11,8 +12,8 @@ namespace blink {
|
| class DocumentMarkerListEditorTest : public ::testing::Test {
|
| protected:
|
| DocumentMarker* CreateMarker(unsigned startOffset, unsigned endOffset) {
|
| - return new DocumentMarker(startOffset, endOffset,
|
| - DocumentMarker::MatchStatus::kInactive);
|
| + return new TextMatchMarker(startOffset, endOffset,
|
| + DocumentMarker::MatchStatus::kInactive);
|
| }
|
| };
|
|
|
|
|