summaryrefslogtreecommitdiffstats
path: root/WebCore/page/PositionCallback.h
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-07-24 13:59:28 +0100
committerSteve Block <steveblock@google.com>2009-07-24 15:47:30 +0100
commit75505f2fc5827c662d9bb0a0a8b90219c23e7e85 (patch)
tree9e4a274651aa9702fb5433cb692350319fc1fe16 /WebCore/page/PositionCallback.h
parent30a03ae510e4341d0ad55d27ff9a4f818dcd16cb (diff)
downloadexternal_webkit-75505f2fc5827c662d9bb0a0a8b90219c23e7e85.zip
external_webkit-75505f2fc5827c662d9bb0a0a8b90219c23e7e85.tar.gz
external_webkit-75505f2fc5827c662d9bb0a0a8b90219c23e7e85.tar.bz2
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.
Diffstat (limited to 'WebCore/page/PositionCallback.h')
-rw-r--r--WebCore/page/PositionCallback.h2
1 files changed, 1 insertions, 1 deletions
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<PositionCallback> {
public:
virtual ~PositionCallback() { }
- virtual void handleEvent(Geoposition* position, bool& raisedException) = 0;
+ virtual void handleEvent(Geoposition* position) = 0;
};
} // namespace WebCore