Index: components/test_runner/text_input_controller.cc |
diff --git a/components/test_runner/text_input_controller.cc b/components/test_runner/text_input_controller.cc |
index a57e65734b123e906446b89b8bac5c9a5cc420c6..926cb8f19c79d21c4774cb96d0a6f872209956f9 100644 |
--- a/components/test_runner/text_input_controller.cc |
+++ b/components/test_runner/text_input_controller.cc |
@@ -170,7 +170,8 @@ void TextInputController::Install(blink::WebLocalFrame* frame) { |
void TextInputController::InsertText(const std::string& text) { |
if (auto* controller = GetInputMethodController()) { |
- controller->commitText(blink::WebString::fromUTF8(text), 0); |
+ controller->commitText(blink::WebString::fromUTF8(text), |
+ std::vector<blink::WebCompositionUnderline>(), 0); |
} |
} |