| Index: services/ui/ime/test_ime_driver/test_ime_driver.cc
|
| diff --git a/services/ui/ime/test_ime_driver/test_ime_driver.cc b/services/ui/ime/test_ime_driver/test_ime_driver.cc
|
| index eab2b45ad0068612cf3db6a4235f4f34e130b09c..b94d1f47e02621b9c35fea79bc451b307793cf21 100644
|
| --- a/services/ui/ime/test_ime_driver/test_ime_driver.cc
|
| +++ b/services/ui/ime/test_ime_driver/test_ime_driver.cc
|
| @@ -42,14 +42,12 @@ TestIMEDriver::TestIMEDriver() {}
|
|
|
| TestIMEDriver::~TestIMEDriver() {}
|
|
|
| -void TestIMEDriver::StartSession(
|
| - int32_t session_id,
|
| - mojom::TextInputClientPtr client,
|
| - mojom::InputMethodRequest input_method_request) {
|
| +void TestIMEDriver::StartSession(int32_t session_id,
|
| + mojom::StartSessionDetailsPtr details) {
|
| input_method_bindings_[session_id].reset(
|
| new mojo::Binding<mojom::InputMethod>(
|
| - new TestInputMethod(std::move(client)),
|
| - std::move(input_method_request)));
|
| + new TestInputMethod(std::move(details->client)),
|
| + std::move(details->input_method_request)));
|
| }
|
|
|
| void TestIMEDriver::CancelSession(int32_t session_id) {
|
|
|