Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: services/ui/ime/ime_unittest.cc

Issue 2626983003: IME for Mus: Send TextInputClient information to IMEDriver. (Closed)
Patch Set: . Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/ui/ime/ime_unittest.cc
diff --git a/services/ui/ime/ime_unittest.cc b/services/ui/ime/ime_unittest.cc
index 121cdc1383b41856532ad8ed97200dba89cb0738..0e6737d1ed652a3b46c48600f3e3ff6df5dc96e3 100644
--- a/services/ui/ime/ime_unittest.cc
+++ b/services/ui/ime/ime_unittest.cc
@@ -93,7 +93,8 @@ TEST_F(IMEAppTest, ProcessKeyEvent) {
TestTextInputClient client(MakeRequest(&client_ptr));
ui::mojom::InputMethodPtr input_method;
- ime_server_->StartSession(std::move(client_ptr), MakeRequest(&input_method));
+ ime_server_->StartSession(ui::mojom::TextInputClientInformation::New(),
+ std::move(client_ptr), MakeRequest(&input_method));
// Send character key event.
ui::KeyEvent char_event('A', ui::VKEY_A, 0);

Powered by Google App Engine
This is Rietveld 408576698