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 3a854cd6d41bea66cdf9ff4214577c5fd9a0218a..fcdc53d94b79b2295a544ce11899e048ce42df67 100644 |
--- a/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
+++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarkerControllerTest.cpp |
@@ -221,10 +221,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()); |
} |