[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:04:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 7fba61bc3071dca05d2dae48aa8a570052ab76e5
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 6 17:09:58 2010 +0000

    2010-09-06  Jonathan Dixon  <joth at chromium.org>
    
            Reviewed by Jeremy Orlow.
    
            Add new interface and empty impl. as precursor to bug 45112
            https://bugs.webkit.org/show_bug.cgi?id=45257
    
            * public/WebGeolocationServiceBridge.h:
            (WebKit::WebGeolocationServiceBridge::~WebGeolocationServiceBridge):
            * src/WebGeolocationServiceBridgeImpl.cpp:
            (WebKit::WebGeolocationServiceBridgeImpl::onWebGeolocationServiceDestroyed):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66837 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index d7b1599..c076901 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-06  Jonathan Dixon  <joth at chromium.org>
+
+        Reviewed by Jeremy Orlow.
+
+        Add new interface and empty impl. as precursor to bug 45112
+        https://bugs.webkit.org/show_bug.cgi?id=45257
+
+        * public/WebGeolocationServiceBridge.h:
+        (WebKit::WebGeolocationServiceBridge::~WebGeolocationServiceBridge):
+        * src/WebGeolocationServiceBridgeImpl.cpp:
+        (WebKit::WebGeolocationServiceBridgeImpl::onWebGeolocationServiceDestroyed):
+
 2010-09-06  Pavel Podivilov  <podivilov at chromium.org>
 
         Reviewed by Yury Semikhatsky.
diff --git a/WebKit/chromium/public/WebGeolocationServiceBridge.h b/WebKit/chromium/public/WebGeolocationServiceBridge.h
index 9f0ffd4..422b32b 100644
--- a/WebKit/chromium/public/WebGeolocationServiceBridge.h
+++ b/WebKit/chromium/public/WebGeolocationServiceBridge.h
@@ -47,6 +47,10 @@ public:
     virtual void setIsAllowed(bool allowed) = 0;
     virtual void setLastPosition(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed, long long timestamp) = 0;
     virtual void setLastError(int errorCode, const WebString& message) = 0;
+    virtual void onWebGeolocationServiceDestroyed() = 0;
+
+protected:
+    virtual ~WebGeolocationServiceBridge() {}
 };
 
 } // namespace WebKit
diff --git a/WebKit/chromium/src/WebGeolocationServiceBridgeImpl.cpp b/WebKit/chromium/src/WebGeolocationServiceBridgeImpl.cpp
index 3c3a1db..bbb7162 100644
--- a/WebKit/chromium/src/WebGeolocationServiceBridgeImpl.cpp
+++ b/WebKit/chromium/src/WebGeolocationServiceBridgeImpl.cpp
@@ -79,6 +79,7 @@ public:
     virtual void setIsAllowed(bool allowed);
     virtual void setLastPosition(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed, long long timestamp);
     virtual void setLastError(int errorCode, const WebString& message);
+    virtual void onWebGeolocationServiceDestroyed();
 
 private:
     WebViewClient* getWebViewClient();
@@ -176,6 +177,10 @@ WebViewClient* WebGeolocationServiceBridgeImpl::getWebViewClient()
     return webViewClient;
 }
 
+void WebGeolocationServiceBridgeImpl::onWebGeolocationServiceDestroyed()
+{
+}
+
 } // namespace WebKit
 
 #endif // ENABLE(GEOLOCATION)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list