Revert "[Tizen] Add a WebView API for notifying orientation change."
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 13 Aug 2024 05:08:34 +0000 (14:08 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 13 Aug 2024 05:08:34 +0000 (14:08 +0900)
This reverts commit c4b57828e895f9093a40ba5e3f6f6c6d978168d2.

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 24c08f8..2c0bbb6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2024 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 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.
@@ -252,12 +252,6 @@ NativeImageSourcePtr TizenWebEngineChromium::GetNativeImageSource()
   return mDaliImageSrc;
 }
 
-void TizenWebEngineChromium::ChangeOrientation(int orientation)
-{
-  DALI_LOG_RELEASE_INFO("#ChangeOrientation : %d\n", orientation);
-  ewk_view_orientation_send(mWebView, orientation);
-}
-
 std::string TizenWebEngineChromium::GetUrl() const
 {
   const char* url = ewk_view_url_get(mWebView);
index 97dbeed..3e6ac35 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TIZEN_WEB_ENGINE_CHROMIUM_H
 
 /*
- * Copyright (c) 2024 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 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.
@@ -93,11 +93,6 @@ public:
   NativeImageSourcePtr GetNativeImageSource() override;
 
   /**
-   * @copydoc Dali::WebEnginePlugin::ChangeOrientation()
-   */
-  void ChangeOrientation(int orientation) override;
-
-  /**
    * @copydoc Dali::WebEnginePlugin::GetTitle()
    */
   std::string GetTitle() const override;
index 8eb9eae..1a54c43 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2024 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 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.
@@ -750,11 +750,6 @@ Dali::NativeImageSourcePtr TizenWebEngineLWE::GetNativeImageSource()
   return mNativeImageSourcePtr;
 }
 
-void TizenWebEngineLWE::ChangeOrientation(int orientation)
-{
-  // NOT IMPLEMENTED
-}
-
 void TizenWebEngineLWE::LoadUrl(const std::string& url)
 {
   DALI_ASSERT_ALWAYS(mWebContainer);
index 2ea1be5..d48102a 100755 (executable)
@@ -2,7 +2,7 @@
 #define DALI_TIZEN_WEB_ENGINE_LWE_H
 
 /*
- * Copyright (c) 2024 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2023 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.
@@ -94,11 +94,6 @@ public:
   Dali::NativeImageSourcePtr GetNativeImageSource() override;
 
   /**
-   * @copydoc Dali::WebEnginePlugin::ChangeOrientation()
-   */
-  void ChangeOrientation(int orientation) override;
-
-  /**
    * @copydoc Dali::WebEnginePlugin::LoadUrl()
    */
   void LoadUrl(const std::string& url) override;