* WebCoreSupport/ChromeClientQt.cpp:
(WebCore::ChromeClientQt::runJavaScriptAlert):
(WebCore::ChromeClientQt::runJavaScriptConfirm):
(WebCore::ChromeClientQt::runJavaScriptPrompt):
(WebCore::ChromeClientQt::setStatusbarText):
* WebCoreSupport/ChromeClientQt.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@18985
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-01-19 Anders Carlsson <acarlsson@apple.com>
+
+ Try fixing the QT build.
+
+ * WebCoreSupport/ChromeClientQt.cpp:
+ (WebCore::ChromeClientQt::runJavaScriptAlert):
+ (WebCore::ChromeClientQt::runJavaScriptConfirm):
+ (WebCore::ChromeClientQt::runJavaScriptPrompt):
+ (WebCore::ChromeClientQt::setStatusbarText):
+ * WebCoreSupport/ChromeClientQt.h:
+
2007-01-18 Zack Rusin <zack@kde.org>
Reviewed by Lars.
notImplemented();
}
+void ChromeClientQt::runJavaScriptAlert(Frame*, const String&)
+{
+ notImplemented();
+}
+
+bool ChromeClientQt::runJavaScriptConfirm(Frame*, const String&)
+{
+ notImplemented();
+}
+
+bool ChromeClientQt::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result)
+{
+ notImplemented();
+}
+
+void ChromeClientQt::setStatusbarText(const String&)
+{
+ notImplemented();
+}
+
}
virtual void closeWindowSoon();
+ virtual void runJavaScriptAlert(Frame*, const String&);
+ virtual bool runJavaScriptConfirm(Frame*, const String&);
+ virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
+ virtual void setStatusbarText(const String&);
+
QWebPage* m_webPage;
};
}