Title: [99455] trunk/Source/WebKit2
Revision
99455
Author
[email protected]
Date
2011-11-07 12:21:36 -0800 (Mon, 07 Nov 2011)

Log Message

Remove unused DrawingArea::syncCompositingLayers
https://bugs.webkit.org/show_bug.cgi?id=71717

Reviewed by John Sullivan.

* WebProcess/WebPage/DrawingArea.h:
* WebProcess/WebPage/DrawingAreaImpl.cpp:
* WebProcess/WebPage/TiledDrawingArea.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (99454 => 99455)


--- trunk/Source/WebKit2/ChangeLog	2011-11-07 20:18:52 UTC (rev 99454)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-07 20:21:36 UTC (rev 99455)
@@ -1,5 +1,16 @@
 2011-11-07  Anders Carlsson  <[email protected]>
 
+        Remove unused DrawingArea::syncCompositingLayers
+        https://bugs.webkit.org/show_bug.cgi?id=71717
+
+        Reviewed by John Sullivan.
+
+        * WebProcess/WebPage/DrawingArea.h:
+        * WebProcess/WebPage/DrawingAreaImpl.cpp:
+        * WebProcess/WebPage/TiledDrawingArea.h:
+
+2011-11-07  Anders Carlsson  <[email protected]>
+
         Rename NetscapePlugin::wantsWindowRelativeNPWindowCoordinates to NetscapePlugin::wantsPluginRelativeNPWindowCoordinates
         https://bugs.webkit.org/show_bug.cgi?id=71708
 

Modified: trunk/Source/WebKit2/WebProcess/WebPage/DrawingArea.h (99454 => 99455)


--- trunk/Source/WebKit2/WebProcess/WebPage/DrawingArea.h	2011-11-07 20:18:52 UTC (rev 99454)
+++ trunk/Source/WebKit2/WebProcess/WebPage/DrawingArea.h	2011-11-07 20:21:36 UTC (rev 99455)
@@ -79,7 +79,6 @@
 #if USE(ACCELERATED_COMPOSITING)
     virtual void setRootCompositingLayer(WebCore::GraphicsLayer*) = 0;
     virtual void scheduleCompositingLayerSync() = 0;
-    virtual void syncCompositingLayers() = 0;
 #if USE(TEXTURE_MAPPER)
     virtual void didReceiveLayerTreeHostMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) = 0;
 #endif

Modified: trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp (99454 => 99455)


--- trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp	2011-11-07 20:18:52 UTC (rev 99454)
+++ trunk/Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp	2011-11-07 20:21:36 UTC (rev 99455)
@@ -310,10 +310,6 @@
     m_layerTreeHost->scheduleLayerFlush();
 }
 
-void DrawingAreaImpl::syncCompositingLayers()
-{
-}
-
 void DrawingAreaImpl::updateBackingStoreState(uint64_t stateID, bool respondImmediately, float deviceScaleFactor, const WebCore::IntSize& size, const WebCore::IntSize& scrollOffset)
 {
     ASSERT(!m_inUpdateBackingStoreState);

Modified: trunk/Source/WebKit2/WebProcess/WebPage/TiledDrawingArea.h (99454 => 99455)


--- trunk/Source/WebKit2/WebProcess/WebPage/TiledDrawingArea.h	2011-11-07 20:18:52 UTC (rev 99454)
+++ trunk/Source/WebKit2/WebProcess/WebPage/TiledDrawingArea.h	2011-11-07 20:21:36 UTC (rev 99455)
@@ -48,7 +48,6 @@
     virtual void detachCompositingContext() { }
     virtual void setRootCompositingLayer(WebCore::GraphicsLayer*) { }
     virtual void scheduleCompositingLayerSync() { }
-    virtual void syncCompositingLayers() { }
     virtual void didReceiveLayerTreeHostMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to