summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/WebCoreSupport
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2012-04-02 11:09:34 -0700
committerGeorge Mount <mount@google.com>2012-04-02 11:11:36 -0700
commitb872967b3009769a7980ecac8c7f2a2626fd9a88 (patch)
treeb01b31338c75123611d1cdc56e394329040e7430 /Source/WebKit/android/WebCoreSupport
parentf77b0a4ca29a927a816ccd71b2a32b3d70200db0 (diff)
downloadexternal_webkit-b872967b3009769a7980ecac8c7f2a2626fd9a88.zip
external_webkit-b872967b3009769a7980ecac8c7f2a2626fd9a88.tar.gz
external_webkit-b872967b3009769a7980ecac8c7f2a2626fd9a88.tar.bz2
Remove unused FORM_DID_BLUR hooks.
Bug 6111763 Framework Change: I56a862a6c0f0d7799f4e935bb7f5103bb2edbb9b Change-Id: I015e1a57e81e897c124af5d96ba76b4d07a381fc
Diffstat (limited to 'Source/WebKit/android/WebCoreSupport')
-rw-r--r--Source/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp b/Source/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
index 5e16152..207fe9a 100644
--- a/Source/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
+++ b/Source/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
@@ -238,11 +238,7 @@ void ChromeClientAndroid::addMessageToConsole(MessageSource, MessageType, Messag
android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, sourceID, msgLevel);
}
-void ChromeClientAndroid::formDidBlur(const WebCore::Node* node)
-{
- android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->formDidBlur(node);
-}
-
+void ChromeClientAndroid::formDidBlur(const WebCore::Node* node) { notImplemented(); }
bool ChromeClientAndroid::canRunBeforeUnloadConfirmPanel() { return true; }
bool ChromeClientAndroid::runBeforeUnloadConfirmPanel(const String& message, Frame* frame) {
String url = frame->document()->documentURI();