diff options
author | Andrei Popescu <andreip@google.com> | 2009-08-17 15:05:58 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-08-17 15:07:51 +0100 |
commit | 2eef744339814ace28e6835115e7e389fb8b7962 (patch) | |
tree | ffcd61a73a63fe5a73d163494a7f02d7413e4bbe /WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp | |
parent | bc5fe496bf48aa18d6b41db4c43e20f890240de2 (diff) | |
download | external_webkit-2eef744339814ace28e6835115e7e389fb8b7962.zip external_webkit-2eef744339814ace28e6835115e7e389fb8b7962.tar.gz external_webkit-2eef744339814ace28e6835115e7e389fb8b7962.tar.bz2 |
Fix WebCoreFrameBridge.cpp
Diffstat (limited to 'WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp')
-rw-r--r-- | WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp index 4f38ce8..30b208b 100644 --- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp +++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp @@ -147,7 +147,7 @@ void ChromeClientAndroid::setResizable(bool) { notImplemented(); } // This function is called by the JavaScript bindings to print usually an error to // a message console. Pass the message to the java side so that the client can // handle it as it sees fit. -void ChromeClientAndroid::addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) { +void ChromeClientAndroid::addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, unsigned int lineNumber, const String& sourceID) { android::WebViewCore::getWebViewCore(m_webFrame->page()->mainFrame()->view())->addMessageToConsole(message, lineNumber, sourceID); } @@ -267,7 +267,7 @@ void ChromeClientAndroid::formStateDidChange(const Node*) } void ChromeClientAndroid::mouseDidMoveOverElement(const HitTestResult&, unsigned int) {} -void ChromeClientAndroid::setToolTip(const String&) {} +void ChromeClientAndroid::setToolTip(const String&, TextDirection) {} void ChromeClientAndroid::print(Frame*) {} /* |