Title: [134690] trunk/Source/WebKit2
Revision
134690
Author
[email protected]
Date
2012-11-14 16:29:20 -0800 (Wed, 14 Nov 2012)

Log Message

Coordinated Graphics: Remove unused members and methods in CoordinatedGraphicsLayer.
https://bugs.webkit.org/show_bug.cgi?id=102172

Patch by Huang Dongsung <[email protected]> on 2012-11-14
Reviewed by Noam Rosenthal.

* WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h:
(CoordinatedGraphicsLayer):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (134689 => 134690)


--- trunk/Source/WebKit2/ChangeLog	2012-11-15 00:23:55 UTC (rev 134689)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-15 00:29:20 UTC (rev 134690)
@@ -1,3 +1,13 @@
+2012-11-14  Huang Dongsung  <[email protected]>
+
+        Coordinated Graphics: Remove unused members and methods in CoordinatedGraphicsLayer.
+        https://bugs.webkit.org/show_bug.cgi?id=102172
+
+        Reviewed by Noam Rosenthal.
+
+        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h:
+        (CoordinatedGraphicsLayer):
+
 2012-11-14  Brady Eidson  <[email protected]>
 
         Move loading responsibility out of WebResourceLoadScheduler into a new WebResourceLoader

Modified: trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h (134689 => 134690)


--- trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h	2012-11-15 00:23:55 UTC (rev 134689)
+++ trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedGraphicsLayer.h	2012-11-15 00:29:20 UTC (rev 134690)
@@ -81,7 +81,7 @@
     , public TiledBackingStoreClient
     , public WebKit::CoordinatedTileClient {
 public:
-    CoordinatedGraphicsLayer(GraphicsLayerClient*);
+    explicit CoordinatedGraphicsLayer(GraphicsLayerClient*);
     virtual ~CoordinatedGraphicsLayer();
 
     // Reimplementations from GraphicsLayer.h.
@@ -160,7 +160,6 @@
     bool fixedToViewport() const { return m_fixedToViewport; }
     void setMaskTarget(GraphicsLayer* layer) { m_maskTarget = layer; }
 
-    void notifyChange();
     void didChangeLayerState();
     void didChangeAnimations();
     void didChangeGeometry();
@@ -178,7 +177,6 @@
 #endif
     void syncImageBacking();
     void syncCanvas();
-    void ensureImageBackingStore();
     void computeTransformedVisibleRect();
     void updateContentBuffers();
 
@@ -197,7 +195,6 @@
     WebKit::WebLayerID m_id;
     WebKit::WebLayerInfo m_layerInfo;
     GraphicsLayer* m_maskTarget;
-    FloatRect m_needsDisplayRect;
     GraphicsLayerTransform m_layerTransform;
     bool m_inUpdateMode : 1;
     bool m_shouldUpdateVisibleRect: 1;
@@ -209,9 +206,6 @@
     bool m_fixedToViewport : 1;
     bool m_canvasNeedsDisplay : 1;
 
-    float m_effectiveOpacity;
-    TransformationMatrix m_effectiveTransform;
-
     WebKit::CoordinatedGraphicsLayerClient* m_coordinator;
     OwnPtr<TiledBackingStore> m_mainBackingStore;
     OwnPtr<TiledBackingStore> m_previousBackingStore;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to