Revert "[Tizen] Add a WebView API for notifying orientation change"
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 27 Aug 2024 06:36:58 +0000 (15:36 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 27 Aug 2024 06:36:58 +0000 (15:36 +0900)
This reverts commit 0af21078d17e43c575aea159605d9039493c6804.

dali-toolkit/devel-api/controls/web-view/web-view.cpp
dali-toolkit/devel-api/controls/web-view/web-view.h
dali-toolkit/internal/controls/web-view/web-view-impl.cpp
dali-toolkit/internal/controls/web-view/web-view-impl.h

index 422acfd1d016ced2d26bffae543a7092e4d9bbd9..3b0f3b60653c9f435cefe3c48ae8fbfdaeb13918 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.
@@ -84,11 +84,6 @@ WebView WebView::DownCast(BaseHandle handle)
   return Control::DownCast<WebView, Internal::WebView>(handle);
 }
 
-void WebView::ChangeOrientation(int orientation)
-{
-  return Dali::Toolkit::GetImpl(*this).ChangeOrientation(orientation);
-}
-
 Dali::Toolkit::WebSettings* WebView::GetSettings() const
 {
   return Dali::Toolkit::GetImpl(*this).GetSettings();
index 7585bab85f65ed465518456665c165b717fc715a..42b78bce420fa3c74b22ff1d213d440572a47630 100755 (executable)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_WEB_VIEW_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.
@@ -269,11 +269,6 @@ public:
    */
   static WebView DownCast(BaseHandle handle);
 
-  /**
-   * @brief Change orientation.
-   */
-  void ChangeOrientation(int orientation);
-
   /**
    * @brief Get WebSettings of WebEngine.
    */
index 000647cf9914a00d1498c9d944c32ee26dfa567e..233e1d04301ad01d8f37e2de60950d6726d67565 100644 (file)
@@ -340,14 +340,6 @@ void WebView::OnRelayout(const Vector2& size, RelayoutContainer& container)
   SetDisplayArea(displayArea);
 }
 
-void WebView::ChangeOrientation(int orientation)
-{
-  if(mWebEngine)
-  {
-    mWebEngine.ChangeOrientation(orientation);
-  }
-}
-
 Dali::Toolkit::WebSettings* WebView::GetSettings() const
 {
   return mWebSettings.get();
index 156c7234965ba083e26d7b69e8dfb31d36098da9..aded7817a4f0dc2766db5f1f5d158e49a7527e6a 100644 (file)
@@ -87,11 +87,6 @@ public:
    */
   static Dali::WebEngineCookieManager* GetCookieManager();
 
-  /**
-   * @copydoc Dali::Toolkit::WebView::ChangeOrientation()
-   */
-  void ChangeOrientation(int orientation);
-
   /**
    * @copydoc Dali::Toolkit::WebView::GetSettings()
    */