Revert "Changes after TouchData renamed to TouchEvent" accepted/tizen/unified/20200820.034749 submit/tizen/20200819.064657
authorJoogab Yun <joogab.yun@samsung.com>
Wed, 19 Aug 2020 05:24:10 +0000 (14:24 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Wed, 19 Aug 2020 05:24:10 +0000 (14:24 +0900)
This reverts commit 33bc00c312168aca71123b77482ba74f781b870b.

dali-extension/web-engine-chromium/tizen-web-engine-chromium.cpp
dali-extension/web-engine-chromium/tizen-web-engine-chromium.h
dali-extension/web-engine-lwe/tizen-web-engine-lwe.cpp
dali-extension/web-engine-lwe/tizen-web-engine-lwe.h

index 31a12a3..8b8aa15 100644 (file)
@@ -322,7 +322,7 @@ public:
     evas_object_resize( mWebView, mWidth, mHeight );
   }
 
-  bool SendTouchEvent( const TouchEvent& touch )
+  bool SendTouchEvent( const TouchData& touch )
   {
     Ewk_Touch_Event_Type type = EWK_TOUCH_START;
     Evas_Touch_Point_State state = EVAS_TOUCH_POINT_DOWN;
@@ -813,7 +813,7 @@ void TizenWebEngineChromium::SetSize( int width, int height )
   }
 }
 
-bool TizenWebEngineChromium::SendTouchEvent( const Dali::TouchEvent& touch )
+bool TizenWebEngineChromium::SendTouchEvent( const Dali::TouchData& touch )
 {
   if( mWebViewContainer )
   {
index 2aca277..cf1f53f 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TIZEN_WEB_ENGINE_CHROMIUM_H
 
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -279,7 +279,7 @@ public:
   /**
    * @copydoc Dali::WebEnginePlugin::SendTouchEvent()
    */
-  bool SendTouchEvent( const Dali::TouchEvent& touch ) override;
+  bool SendTouchEvent( const Dali::TouchData& touch ) override;
 
   /**
    * @copydoc Dali::WebEnginePlugin::SendKeyEvent()
index dd63972..82ca3d1 100644 (file)
@@ -22,7 +22,7 @@
 #include <dali/integration-api/debug.h>
 #include <dali/devel-api/common/stage.h>
 #include <dali/public-api/events/key-event.h>
-#include <dali/public-api/events/touch-event.h>
+#include <dali/public-api/events/touch-data.h>
 #include <dali/devel-api/adaptor-framework/application-devel.h>
 
 #include <unistd.h>
@@ -731,7 +731,7 @@ void TizenWebEngineLWE::DispatchMouseMoveEvent( float x, float y, bool isLButton
     : LWE::MouseButtonsValue::NoButtonDown, x, y );
 }
 
-bool TizenWebEngineLWE::SendTouchEvent( const TouchEvent& touch )
+bool TizenWebEngineLWE::SendTouchEvent( const TouchData& touch )
 {
   size_t pointCount = touch.GetPointCount();
   if( pointCount == 1 )
index 7fa5d7e..2168115 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TIZEN_WEB_ENGINE_LWE_H
 
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -235,7 +235,7 @@ public:
   /**
    * @copydoc Dali::WebEnginePlugin::SendTouchEvent()
    */
-  bool SendTouchEvent( const Dali::TouchEvent& touch ) override;
+  bool SendTouchEvent( const Dali::TouchData& touch ) override;
 
   /**
    * @copydoc Dali::WebEnginePlugin::SendKeyEvent()