Fix IME issue in twitter application
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / efl / InputMethodContextEfl.h
index f36e852..0bc13f5 100755 (executable)
@@ -49,6 +49,7 @@ public:
     void updateTextInputState();
 
 #if ENABLE(TIZEN_ISF_PORT)
+    void setTryToShow(bool flag) { m_tryToShow = flag; }
     void setType(const String&);
     bool isShow();
     Ecore_IMF_Autocapital_Type autoCapitalType();
@@ -77,7 +78,12 @@ private:
     static Eina_Bool onIMFRetrieveSurrounding(void*, Ecore_IMF_Context*, char**, int*);
     static void onIMFDeleteSurrounding(void*, Ecore_IMF_Context*, void*);
 
+#if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
+    void showInputPicker(Ewk_Input_Type, const EditorState&);
+#endif
+
     HashMap<int, OwnPtr<Ecore_IMF_Context> > m_contextList;
+    bool m_tryToShow;
 #endif
 
     EwkViewImpl* m_viewImpl;