| Index: third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/InputMethodController.cpp b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| index 33eb3153143ba1be44737d404cc2e9c73d067e57..1f2e2e9e8ac8dd2c8bfbcbf7d69b3ba964fcd08f 100644
|
| --- a/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| @@ -466,8 +466,8 @@ void InputMethodController::AddCompositionUnderlines(
|
|
|
| GetDocument().Markers().AddCompositionMarker(
|
| ephemeral_line_range, underline.GetColor(),
|
| - underline.Thick() ? CompositionMarker::Thickness::kThick
|
| - : CompositionMarker::Thickness::kThin,
|
| + underline.Thick() ? StyleableMarker::Thickness::kThick
|
| + : StyleableMarker::Thickness::kThin,
|
| underline.BackgroundColor());
|
| }
|
| }
|
| @@ -692,7 +692,7 @@ void InputMethodController::SetComposition(
|
| if (underlines.IsEmpty()) {
|
| GetDocument().Markers().AddCompositionMarker(
|
| EphemeralRange(composition_range_), Color::kBlack,
|
| - CompositionMarker::Thickness::kThin,
|
| + StyleableMarker::Thickness::kThin,
|
| LayoutTheme::GetTheme().PlatformDefaultCompositionBackgroundColor());
|
| return;
|
| }
|
|
|