diff options
author | Steve Block <steveblock@google.com> | 2010-02-24 10:45:35 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-02-24 10:45:35 -0800 |
commit | 08d3adc3529e10dc9843cdfee20b4937f38301bd (patch) | |
tree | a088ed01227165ad175051d732aa4aebe234ce7e | |
parent | 4a20cc3dcfdb38c64737f41e6725c307a6284267 (diff) | |
parent | 95b5322fb41833173e2aa950c094b58ee83c1a16 (diff) | |
download | external_webkit-08d3adc3529e10dc9843cdfee20b4937f38301bd.zip external_webkit-08d3adc3529e10dc9843cdfee20b4937f38301bd.tar.gz external_webkit-08d3adc3529e10dc9843cdfee20b4937f38301bd.tar.bz2 |
Merge "Adds a missing initializer for Geolocation maximumAge"
-rw-r--r-- | WebCore/page/Geolocation.cpp | 1 |
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); |