From 75505f2fc5827c662d9bb0a0a8b90219c23e7e85 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Fri, 24 Jul 2009 13:59:28 +0100 Subject: Fixes WebKit Geolocation bug 27255. We should not call the error callback if the success callback raises an exception. This is currently being submitted to WebKit as bug 27255. --- WebCore/page/PositionCallback.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'WebCore/page/PositionCallback.h') diff --git a/WebCore/page/PositionCallback.h b/WebCore/page/PositionCallback.h index 5f32c75..f6bf139 100644 --- a/WebCore/page/PositionCallback.h +++ b/WebCore/page/PositionCallback.h @@ -36,7 +36,7 @@ namespace WebCore { class PositionCallback : public RefCounted { public: virtual ~PositionCallback() { } - virtual void handleEvent(Geoposition* position, bool& raisedException) = 0; + virtual void handleEvent(Geoposition* position) = 0; }; } // namespace WebCore -- cgit v1.1