[EWK_REFACTOR bug] Remove EWebView::ScrollFocusedEditableNode()
authorhh4813.kim <hh4813.kim@samsung.com>
Wed, 15 Apr 2015 07:48:57 +0000 (16:48 +0900)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
IMContextEfl calls RWHV::ScrollFocusedEditableNode() directly, not via EWebView.
So, we don't need EWebView::ScrollFocusedEditableNode() any more.

Bug: http://web.sec.samsung.net/bugzilla/show_bug.cgi?id=12028

Change-Id: I7c7a5b979d7ff12ef5a036bc36361248c209764a
Signed-off-by: hh4813.kim <hh4813.kim@samsung.com>
tizen_src/ewk/efl_integration/eweb_view.cc
tizen_src/ewk/efl_integration/eweb_view.h

index 1c0fcba..f90708f 100644 (file)
@@ -2152,15 +2152,6 @@ gfx::Rect EWebView::GetIMERect() {
 #endif
 }
 
-void EWebView::ScrollFocusedEditableNode() {
-#if defined(EWK_REFACTOR)
-  if (rwhv())
-    rwhv()->ScrollFocusedEditableNode();
-#else
-  NOTIMPLEMENTED();
-#endif
-}
-
 void EWebView::LoadNotFoundErrorPage(const std::string& invalidUrl) {
   RenderViewHost* render_view_host = web_contents_->GetRenderViewHost();
   if (render_view_host)
index e4b3b85..b3c28e9 100644 (file)
@@ -429,7 +429,6 @@ class EWebView {
 
   bool IsIMEShow();
   gfx::Rect GetIMERect();
-  void ScrollFocusedEditableNode();
 
   // Returns TCP port number with Inspector, or 0 if error.
   int StartInspectorServer(int port = 0);