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

hans at chromium.org hans at chromium.org
Wed Dec 22 13:24:18 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 78d1c87f4df74b0bcfc7b233ce5f0225e3ddc8c5
Author: hans at chromium.org <hans at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Sep 14 13:20:18 2010 +0000

    2010-09-14  Hans Wennborg  <hans at chromium.org>
    
            Reviewed by Jeremy Orlow.
    
            Make WebDeviceOrientationClientMock constructor private.
            https://bugs.webkit.org/show_bug.cgi?id=45743
    
            Clients should use the create member function instead. DumpRenderTree
            and the Chromium test_shell have previously been updated to call create.
    
            * public/WebDeviceOrientationClientMock.h:
            (WebKit::WebDeviceOrientationClientMock::WebDeviceOrientationClientMock):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67462 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 972af28..c440abb 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-14  Hans Wennborg  <hans at chromium.org>
+
+        Reviewed by Jeremy Orlow.
+
+        Make WebDeviceOrientationClientMock constructor private.
+        https://bugs.webkit.org/show_bug.cgi?id=45743
+
+        Clients should use the create member function instead. DumpRenderTree
+        and the Chromium test_shell have previously been updated to call create.
+
+        * public/WebDeviceOrientationClientMock.h:
+        (WebKit::WebDeviceOrientationClientMock::WebDeviceOrientationClientMock):
+
 2010-09-13  Eric Uhrhane  <ericu at chromium.org>
 
         Reviewed by Darin Fisher.
diff --git a/WebKit/chromium/public/WebDeviceOrientationClientMock.h b/WebKit/chromium/public/WebDeviceOrientationClientMock.h
index 4b4ffe9..7fae792 100644
--- a/WebKit/chromium/public/WebDeviceOrientationClientMock.h
+++ b/WebKit/chromium/public/WebDeviceOrientationClientMock.h
@@ -37,7 +37,6 @@ namespace WebKit {
 class WebDeviceOrientationClientMock : public WebDeviceOrientationClient {
 public:
     WEBKIT_API static WebDeviceOrientationClientMock* create();
-    WebDeviceOrientationClientMock() { initialize(); } // FIXME: Make constructor private once downstream has been fixed.
     ~WebDeviceOrientationClientMock() { reset(); }
 
     virtual void setController(WebDeviceOrientationController*);
@@ -48,6 +47,7 @@ public:
     WEBKIT_API void setOrientation(WebDeviceOrientation&);
 
 private:
+    WebDeviceOrientationClientMock() { initialize(); }
     WEBKIT_API void initialize();
     WEBKIT_API void reset();
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list