[Tizen] Disable hover and wheel code until chromium support it 14/256214/1 accepted/tizen/unified/20210331.105542 accepted/tizen/unified/20210402.004934 submit/tizen/20210331.140239 submit/tizen/20210401.183324
authorJiyun Yang <ji.yang@samsung.com>
Wed, 31 Mar 2021 04:40:46 +0000 (13:40 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Wed, 31 Mar 2021 04:40:46 +0000 (13:40 +0900)
Change-Id: I67d0360aab1fa43a11c29d092129a534f901295b
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
dali-extension/web-engine-chromium/tizen-web-engine-chromium.cpp

index df4e638..7201ebe 100755 (executable)
@@ -593,7 +593,7 @@ public:
 
   bool SendHoverEvent(const HoverEvent& hover)
   {
-#if defined(OS_TIZEN_TV)
+#if 0
     //TODO...left/right/middle of mouse could not be acquired now.
     Ewk_Mouse_Button_Type type = EWK_Mouse_Button_Left;
     switch ( hover.GetState( 0 ) )
@@ -630,7 +630,7 @@ public:
 
   bool SendWheelEvent(const WheelEvent& wheel)
   {
-#if defined(OS_TIZEN_TV)
+#if 0
     Eina_Bool direction = wheel.GetDirection() ? true : false;
     int step = wheel.GetDelta();
     float x = wheel.GetPoint().x;
@@ -825,7 +825,7 @@ private:
 TizenWebEngineChromium::TizenWebEngineChromium()
     : mWebViewContainer(0)
     , mJavaScriptEvaluationCount(0)
-{\r
+{
 }
 
 TizenWebEngineChromium::~TizenWebEngineChromium()