Index: third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
index c26976e2e24bcf5079cbfb776714e5151151bf0a..ad8c4855be346da830014a33f5e011cb3b9a30e3 100644 |
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
@@ -220,10 +220,10 @@ TEST_F(DocumentMarkerControllerTest, CompositionMarkersNotMerged) { |
GetDocument().UpdateStyleAndLayout(); |
MarkerController().AddCompositionMarker( |
EphemeralRange(Position(text, 0), Position(text, 1)), Color::kBlack, |
- false, Color::kBlack); |
+ CompositionMarker::Thickness::kThin, Color::kBlack); |
MarkerController().AddCompositionMarker( |
- EphemeralRange(Position(text, 1), Position(text, 3)), Color::kBlack, true, |
- Color::kBlack); |
+ EphemeralRange(Position(text, 1), Position(text, 3)), Color::kBlack, |
+ CompositionMarker::Thickness::kThick, Color::kBlack); |
EXPECT_EQ(2u, MarkerController().Markers().size()); |
} |