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

Unified Diff: blimp/client/app/android/web_input_box.h

Issue 2261853002: Changed Blimp IME to use PopUp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ime_popup
Patch Set: Used AlertDialog from support.v7 Created 4 years, 4 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/app/android/web_input_box.h
diff --git a/blimp/client/app/android/web_input_box.h b/blimp/client/app/android/web_input_box.h
deleted file mode 100644
index 289af53a63b7151a8e6d2c6b6f32de5aa9fc10f6..0000000000000000000000000000000000000000
--- a/blimp/client/app/android/web_input_box.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
-#define BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
-
-#include <string>
-
-#include "base/android/jni_android.h"
-#include "base/macros.h"
-#include "blimp/client/core/contents/ime_feature.h"
-#include "ui/base/ime/text_input_type.h"
-
-namespace blimp {
-namespace client {
-
-// The native component of org.chromium.blimp.input.WebInputBox.
-class WebInputBox : public ImeFeature::Delegate {
- public:
- static bool RegisterJni(JNIEnv* env);
-
- // |ime_feature| is expected to outlive the WebInputBox.
- WebInputBox(JNIEnv* env,
- const base::android::JavaParamRef<jobject>& jobj,
- ImeFeature* ime_feature);
-
- // Brings up IME for user to enter text.
- void OnShowImeRequested(ui::TextInputType input_type,
- const std::string& text) override;
-
- // Hides IME.
- void OnHideImeRequested() override;
-
- // Methods called from Java via JNI.
- void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& jobj);
-
- // Sends the text entered from IME to the blimp engine
- void OnImeTextEntered(JNIEnv* env,
- const base::android::JavaParamRef<jobject>& jobj,
- const base::android::JavaParamRef<jstring>& text);
-
- private:
- ~WebInputBox() override;
-
- // Reference to the Java object which owns this class.
- base::android::ScopedJavaGlobalRef<jobject> java_obj_;
-
- // A bridge to the network layer which does the work of (de)serializing the
- // outgoing and incoming BlimpMessage::IME messages from the engine.
- ImeFeature* ime_feature_;
-
- DISALLOW_COPY_AND_ASSIGN(WebInputBox);
-};
-
-} // namespace client
-} // namespace blimp
-
-#endif // BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
« no previous file with comments | « blimp/client/app/android/java/strings/android_blimp_strings.grd ('k') | blimp/client/app/android/web_input_box.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698