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

Side by Side Diff: blimp/client/app/android/web_input_box.h

Issue 1779673003: Added network components for blimp text input feature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge origin/master Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_ 5 #ifndef BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
6 #define BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_ 6 #define BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/android/jni_android.h" 10 #include "base/android/jni_android.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "blimp/client/feature/ime_feature.h"
13 #include "ui/base/ime/text_input_type.h"
12 14
13 namespace blimp { 15 namespace blimp {
14 namespace client { 16 namespace client {
15 17
16 // The native component of org.chromium.blimp.input.WebInputBox. 18 // The native component of org.chromium.blimp.input.WebInputBox.
17 class WebInputBox { 19 class WebInputBox : public ImeFeature::Delegate {
18 public: 20 public:
19 static bool RegisterJni(JNIEnv* env); 21 static bool RegisterJni(JNIEnv* env);
20 22
21 WebInputBox(JNIEnv* env, const base::android::JavaParamRef<jobject>& jobj); 23 // |ime_feature| is expected to outlive the WebInputBox.
24 WebInputBox(JNIEnv* env,
25 const base::android::JavaParamRef<jobject>& jobj,
26 ImeFeature* ime_feature);
22 27
23 // Brings up or hides the IME for user to enter text. 28 // Brings up IME for user to enter text.
24 void OnImeRequested(bool show); 29 void OnShowImeRequested(ui::TextInputType input_type,
30 const std::string& text) override;
31
32 // Hides IME.
33 void OnHideImeRequested() override;
25 34
26 // Methods called from Java via JNI. 35 // Methods called from Java via JNI.
27 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& jobj); 36 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& jobj);
28 37
29 // Sends the text entered from IME to the blimp engine 38 // Sends the text entered from IME to the blimp engine
30 void OnImeTextEntered(JNIEnv* env, 39 void OnImeTextEntered(JNIEnv* env,
31 const base::android::JavaParamRef<jobject>& jobj, 40 const base::android::JavaParamRef<jobject>& jobj,
32 const base::android::JavaParamRef<jstring>& text); 41 const base::android::JavaParamRef<jstring>& text);
33 42
34 private: 43 private:
35 virtual ~WebInputBox(); 44 virtual ~WebInputBox();
36 45
37 // Reference to the Java object which owns this class. 46 // Reference to the Java object which owns this class.
38 base::android::ScopedJavaGlobalRef<jobject> java_obj_; 47 base::android::ScopedJavaGlobalRef<jobject> java_obj_;
39 48
49 // A bridge to the network layer which does the work of (de)serializing the
50 // outgoing and incoming BlimpMessage::IME messages from the engine.
51 ImeFeature* ime_feature_;
52
40 DISALLOW_COPY_AND_ASSIGN(WebInputBox); 53 DISALLOW_COPY_AND_ASSIGN(WebInputBox);
41 }; 54 };
42 55
43 } // namespace client 56 } // namespace client
44 } // namespace blimp 57 } // namespace blimp
45 58
46 #endif // BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_ 59 #endif // BLIMP_CLIENT_APP_ANDROID_WEB_INPUT_BOX_H_
OLDNEW
« no previous file with comments | « blimp/client/app/android/java/src/org/chromium/blimp/input/WebInputBox.java ('k') | blimp/client/app/android/web_input_box.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698