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

Unified Diff: blimp/client/core/contents/blimp_contents_view_impl_aura.cc

Issue 2393043004: Blimp: IME should submit form with text (Closed)
Patch Set: dtrainor@ comments Created 4 years, 2 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: 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 {}

Powered by Google App Engine
This is Rietveld 408576698