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

Unified Diff: chrome/browser/ui/views/ime_driver/ime_driver_mus.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: chrome/browser/ui/views/ime_driver/ime_driver_mus.cc
diff --git a/chrome/browser/ui/views/ime_driver/ime_driver_mus.cc b/chrome/browser/ui/views/ime_driver/ime_driver_mus.cc
index 5ce2fb3abc9ebf62adb7013907bc7e3147cded37..1ce0cddc626c1b8fdd50af9c54904389a2f5615c 100644
--- a/chrome/browser/ui/views/ime_driver/ime_driver_mus.cc
+++ b/chrome/browser/ui/views/ime_driver/ime_driver_mus.cc
@@ -40,12 +40,13 @@ void IMEDriver::Register() {
void IMEDriver::StartSession(
int32_t session_id,
+ ui::mojom::TextInputClientInformationPtr client_info,
ui::mojom::TextInputClientPtr client,
ui::mojom::InputMethodRequest input_method_request) {
#if defined(OS_CHROMEOS)
input_method_bindings_[session_id] =
base::MakeUnique<mojo::Binding<ui::mojom::InputMethod>>(
- new InputMethodBridge(std::move(client)),
+ new InputMethodBridge(std::move(client_info), std::move(client)),
std::move(input_method_request));
#else
input_method_bindings_[session_id] =

Powered by Google App Engine
This is Rietveld 408576698