summaryrefslogtreecommitdiffstats
path: root/WebCore/page/Geolocation.cpp
diff options
context:
space:
mode:
authorPatrick Scott <phanna@android.com>2009-10-26 09:32:52 -0400
committerPatrick Scott <phanna@android.com>2009-10-26 09:32:52 -0400
commit4fa0517dc551c82c1123712b9324bd90ed193d14 (patch)
tree9b6f6834357c80d1acc039345e82e7a68bb3dd9f /WebCore/page/Geolocation.cpp
parent7160f16bdcd50dec1aa684e0e1753427057fb218 (diff)
downloadexternal_webkit-4fa0517dc551c82c1123712b9324bd90ed193d14.zip
external_webkit-4fa0517dc551c82c1123712b9324bd90ed193d14.tar.gz
external_webkit-4fa0517dc551c82c1123712b9324bd90ed193d14.tar.bz2
Change eventTypes to eventNames to fix the assert.
Diffstat (limited to 'WebCore/page/Geolocation.cpp')
-rw-r--r--WebCore/page/Geolocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/page/Geolocation.cpp b/WebCore/page/Geolocation.cpp
index fd38614..ba3516d 100644
--- a/WebCore/page/Geolocation.cpp
+++ b/WebCore/page/Geolocation.cpp
@@ -574,7 +574,7 @@ bool Geolocation::operator==(const EventListener& listener)
void Geolocation::handleEvent(ScriptExecutionContext*, Event* event)
{
- ASSERT_UNUSED(event, event->type() == eventTypes().unloadEvent);
+ ASSERT_UNUSED(event, event->type() == eventNames().unloadEvent);
// Cancel any ongoing requests on page unload. This is required to release
// references to JS callbacks in the page, to allow the frame to be cleaned up
// by WebKit.