summaryrefslogtreecommitdiffstats
path: root/WebCore
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-02-24 18:36:14 +0000
committerSteve Block <steveblock@google.com>2010-02-24 18:37:08 +0000
commit95b5322fb41833173e2aa950c094b58ee83c1a16 (patch)
treeb4261c57b6f16fd8c9337774b8acf611e782302d /WebCore
parent2cfbb169e5870d377ef9986b5cd74713abb38ca7 (diff)
downloadexternal_webkit-95b5322fb41833173e2aa950c094b58ee83c1a16.zip
external_webkit-95b5322fb41833173e2aa950c094b58ee83c1a16.tar.gz
external_webkit-95b5322fb41833173e2aa950c094b58ee83c1a16.tar.bz2
Adds a missing initializer for Geolocation maximumAge
Change-Id: I7274d12baa4718280e8cc677583e5308c7917a56
Diffstat (limited to 'WebCore')
-rw-r--r--WebCore/page/Geolocation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/WebCore/page/Geolocation.cpp b/WebCore/page/Geolocation.cpp
index 2db798e..faa8f86 100644
--- a/WebCore/page/Geolocation.cpp
+++ b/WebCore/page/Geolocation.cpp
@@ -84,6 +84,7 @@ Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassRefPtr<Posit
, m_errorCallback(errorCallback)
, m_options(options)
, m_timer(this, &Geolocation::GeoNotifier::timerFired)
+ , m_useCachedPosition(false)
{
ASSERT(m_geolocation);
ASSERT(m_successCallback);