| Index: blimp/client/core/contents/blimp_contents_view_impl_aura.cc
|
| diff --git a/blimp/client/core/contents/blimp_contents_view_impl_aura.cc b/blimp/client/core/contents/blimp_contents_view_impl_aura.cc
|
| index 0e0582c0cc81f860f21a4a2fd8f166f37b04aff1..f646d9cfb2bd2732e92a39ce1748ad997b988c9f 100644
|
| --- a/blimp/client/core/contents/blimp_contents_view_impl_aura.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_view_impl_aura.cc
|
| @@ -14,11 +14,8 @@ namespace {
|
| class AuraImeDelegate : public ImeFeature::Delegate {
|
| public:
|
| ~AuraImeDelegate() override = default;
|
| - void OnShowImeRequested(
|
| - ui::TextInputType input_type,
|
| - const std::string& text,
|
| - const ImeFeature::ShowImeCallback& callback) override {
|
| - callback.Run("");
|
| + void OnShowImeRequested(const ImeFeature::WebInputRequest& request) override {
|
| + request.show_ime_callback.Run(ImeFeature::WebInputResponse());
|
| }
|
|
|
| void OnHideImeRequested() override {}
|
|
|