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

aroben at apple.com aroben at apple.com
Wed Dec 22 11:34:31 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit acc82a5e7a7a46edfe798c86359c4d719e7900c3
Author: aroben at apple.com <aroben at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 29 18:14:56 2010 +0000

    Remove some unused WKCACFLayer members
    
    Fixes <http://webkit.org/b/43200> WKCACFLayer has some unused members
    
    Reviewed by John Sullivan.
    
    * platform/graphics/win/WKCACFLayer.h: Removed [set]ClearsContext,
    [set]Filters, and [set]SortsSublayers.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64294 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7fa1e01..d0a634c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-07-29  Adam Roben  <aroben at apple.com>
+
+        Remove some unused WKCACFLayer members
+
+        Fixes <http://webkit.org/b/43200> WKCACFLayer has some unused members
+
+        Reviewed by John Sullivan.
+
+        * platform/graphics/win/WKCACFLayer.h: Removed [set]ClearsContext,
+        [set]Filters, and [set]SortsSublayers.
+
 2010-07-28  Justin Schuh  <jschuh at chromium.org>
 
         Reviewed by Nate Chapin.
diff --git a/WebCore/platform/graphics/win/WKCACFLayer.h b/WebCore/platform/graphics/win/WKCACFLayer.h
index 5e8eb05..55eeca5 100644
--- a/WebCore/platform/graphics/win/WKCACFLayer.h
+++ b/WebCore/platform/graphics/win/WKCACFLayer.h
@@ -162,9 +162,6 @@ public:
     virtual void setBounds(const CGRect&);
     CGRect bounds() const { return CACFLayerGetBounds(layer()); }
 
-    void setClearsContext(bool clears) { CACFLayerSetClearsContext(layer(), clears); setNeedsCommit(); }
-    bool clearsContext() const { return CACFLayerGetClearsContext(layer()); }
-
     void setContents(CFTypeRef contents) { CACFLayerSetContents(layer(), contents); setNeedsCommit(); }
     CFTypeRef contents() const { return CACFLayerGetContents(layer()); }
 
@@ -180,9 +177,6 @@ public:
     void setEdgeAntialiasingMask(uint32_t mask) { CACFLayerSetEdgeAntialiasingMask(layer(), mask); setNeedsCommit(); }
     uint32_t edgeAntialiasingMask() const { return CACFLayerGetEdgeAntialiasingMask(layer()); }
 
-    void setFilters(CFArrayRef filters) { CACFLayerSetFilters(layer(), filters); setNeedsCommit(); }
-    CFArrayRef filters() const { return CACFLayerGetFilters(layer()); }
-
     virtual void setFrame(const CGRect&);
     CGRect frame() const { return CACFLayerGetFrame(layer()); }
 
@@ -226,9 +220,6 @@ public:
 
     WKCACFLayer* rootLayer() const;
 
-    void setSortsSublayers(bool sorts) { CACFLayerSetSortsSublayers(layer(), sorts); setNeedsCommit(); }
-    bool sortsSublayers() const { return CACFLayerGetSortsSublayers(layer()); }
-
     void setSublayerTransform(const CATransform3D& transform) { CACFLayerSetSublayerTransform(layer(), transform); setNeedsCommit(); }
     CATransform3D sublayerTransform() const { return CACFLayerGetSublayerTransform(layer()); }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list