From 1063e9d3a9472b63fd18a05fb7bd188b63b7dbcc Mon Sep 17 00:00:00 2001 From: Seokju Kwon Date: Wed, 12 Sep 2012 14:29:15 +0900 Subject: [PATCH] [WK2] Remove unnecessary code [Title] Remove unnecessary code [Issue#] N/A [Problem] Keypad disappears shortly [Cause] Handle keypad in didSameDocumentNavigationForFrame [Solution] Remove it because It isn't necessary to handle any more Change-Id: I56ecfc503b1c333dfdf5e41f7f6f05b1e4edfc1a --- Source/WebKit2/UIProcess/WebPageProxy.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Source/WebKit2/UIProcess/WebPageProxy.cpp b/Source/WebKit2/UIProcess/WebPageProxy.cpp index df6c30c..710cac1 100755 --- a/Source/WebKit2/UIProcess/WebPageProxy.cpp +++ b/Source/WebKit2/UIProcess/WebPageProxy.cpp @@ -2178,13 +2178,6 @@ void WebPageProxy::didSameDocumentNavigationForFrame(uint64_t frameID, uint32_t clearPendingAPIRequestURL(); frame->didSameDocumentNavigation(url); -#if ENABLE(TIZEN_ISF_PORT) - if (m_pageClient->getInputMethodState()) { - LOG(ISF, "%s\n", __func__); - setInputMethodState(false, String(), String()); - } -#endif - m_loaderClient.didSameDocumentNavigationForFrame(this, frame, static_cast(opaqueSameDocumentNavigationType), userData.get()); } -- 2.7.4