Revert "Added missing callback in CoreUIEFLCallback" 11/135711/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Mon, 26 Jun 2017 04:23:36 +0000 (13:23 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Mon, 26 Jun 2017 04:47:43 +0000 (13:47 +0900)
This reverts commit ebe07d3490b57730f40d6f2bb1e3f38498e04e5a.

Change-Id: I389bad59e1ad2c3ff36af3de5670cf8d2820b49d

src/sclcoreui-efl.cpp
src/sclcoreui-efl.h

index 468cb87..3cc2005 100644 (file)
@@ -290,16 +290,6 @@ void CoreUIEFLCallback::on_process_input_device_event(sclu32 &type, sclchar *dat
     if (app_callback) app_callback->on_process_input_device_event(type, data, len, ret);
 }
 
-void CoreUIEFLCallback::on_set_prediction_hint(const sclchar *prediction_hint)
-{
-    if (app_callback) app_callback->on_set_prediction_hint(prediction_hint);
-}
-
-void CoreUIEFLCallback::on_set_mime_type(const sclchar *mime_type)
-{
-    if (app_callback) app_callback->on_set_mime_type(mime_type);
-}
-
 CSCLCoreUIEFL::CSCLCoreUIEFL()
 {
     m_initialized = FALSE;
index 2b499a9..aa2950d 100644 (file)
@@ -95,9 +95,6 @@ struct CoreUIEFLCallback : public ISCLCoreEventCallback {
     /* Added in callback interface version 1.1 */
     virtual void on_process_input_device_event(sclu32 &type, sclchar *data, size_t &len, sclu32 *ret);
 
-    virtual void on_set_prediction_hint(const sclchar *prediction_hint);
-    virtual void on_set_mime_type(const sclchar *mime_type);
-
     ISCLCoreEventCallback *app_callback;
     sclboolean initialized;
     sclwindow main_window;