* bridge/win/FrameWin.cpp:
(WebCore::shouldInterruptJavaScript):
* bridge/win/FrameWin.h:
Try fixing the Windows build.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14930
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-06-21 Anders Carlsson <acarlsson@apple.com>
+
+ * bridge/win/FrameWin.cpp:
+ (WebCore::shouldInterruptJavaScript):
+ * bridge/win/FrameWin.h:
+ Try fixing the Windows build.
+
2006-06-20 Adele Peterson <adele@apple.com>
RS by Tim Hatcher.
return MessageBox(view()->windowHandle(), text.characters(), L"JavaScript Alert", MB_OKCANCEL) == IDOK;
}
+bool shouldInterruptJavaScript() const
+{
+ // FIXME: This should be implemented
+ return false;
+}
+
// FIXME: This needs to be unified with the keyPress method on FrameMac
bool FrameWin::keyPress(const PlatformKeyboardEvent& keyEvent)
{
virtual void runJavaScriptAlert(const String& message);
virtual bool runJavaScriptConfirm(const String& message);
virtual bool runJavaScriptPrompt(const String& message, const String& defaultValue, String& result);
+ virtual bool shouldInterruptJavaScript() const;
+
virtual bool locationbarVisible();
virtual bool menubarVisible();
virtual bool personalbarVisible();