[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

jorlow at chromium.org jorlow at chromium.org
Fri Feb 26 22:22:51 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 2a2199f0ca5ce352c0464048120dc90c4864c2e4
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 17 14:20:45 2010 +0000

    2
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54890 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 32ce7f2..e14d906 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,4 +1,13 @@
-2010-02-17  Xan Lopez  <xlopez at igalia.com>
+2010-02-17  Marcus Bulach  <bulach at chromium.org>
+
+        Reviewed by Jeremy Orlow.
+
+        Fixes initialization order of members for GeolocationServiceChromium.
+        https://bugs.webkit.org/show_bug.cgi?id=35034
+
+        * platform/chromium/GeolocationServiceChromium.cpp:
+
+22010-02-17  Xan Lopez  <xlopez at igalia.com>
 
         Reviewed by Gustavo Noronha.
 
@@ -25,7 +34,7 @@
         * platform/network/soup/ResourceHandleSoup.cpp:
         (WebCore::parseDataUrl):
 
-2010-02-17  Marcus Bulach  <bulach at chromium.org>
+010-02-17  Marcus Bulach  <bulach at chromium.org>
 
         Reviewed by Jeremy Orlow.
 
diff --git a/WebCore/platform/chromium/GeolocationServiceChromium.cpp b/WebCore/platform/chromium/GeolocationServiceChromium.cpp
index 22b95bc..4e00908 100644
--- a/WebCore/platform/chromium/GeolocationServiceChromium.cpp
+++ b/WebCore/platform/chromium/GeolocationServiceChromium.cpp
@@ -38,9 +38,9 @@ namespace WebCore {
 GeolocationServiceChromium::GeolocationServiceChromium(GeolocationServiceClient* c)
         : GeolocationService(c),
           m_geolocation(reinterpret_cast<Geolocation*>(c)),
+          m_geolocationServiceBridge(ChromiumBridge::createGeolocationServiceBridge(this)),
           m_lastPosition(Geoposition::create(Coordinates::create(0.0, 0.0, false, 0.0, 0.0, false, 0.0, false, 0.0, false, 0.0), 0)),
-          m_lastError(PositionError::create(PositionError::POSITION_UNAVAILABLE, "")),
-          m_geolocationServiceBridge(ChromiumBridge::createGeolocationServiceBridge(this))
+          m_lastError(PositionError::create(PositionError::POSITION_UNAVAILABLE, ""))
 {
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list