Title: [135216] trunk/Source
- Revision
- 135216
- Author
- [email protected]
- Date
- 2012-11-19 17:22:16 -0800 (Mon, 19 Nov 2012)
Log Message
[chromium] Remove the WebCompositorSupport virtual methods from the base class
https://bugs.webkit.org/show_bug.cgi?id=102153
Reviewed by James Robinson.
These methods have now been removed from WebCompositorSupportImpl in
chromium and should be removed from the base class. Everything is
going through WebLayerTreeSettings now.
* chromium/public/WebCompositorSupport.h:
Modified Paths
Diff
Modified: trunk/Source/Platform/ChangeLog (135215 => 135216)
--- trunk/Source/Platform/ChangeLog 2012-11-20 00:49:30 UTC (rev 135215)
+++ trunk/Source/Platform/ChangeLog 2012-11-20 01:22:16 UTC (rev 135216)
@@ -1,3 +1,16 @@
+2012-11-19 Dana Jansens <[email protected]>
+
+ [chromium] Remove the WebCompositorSupport virtual methods from the base class
+ https://bugs.webkit.org/show_bug.cgi?id=102153
+
+ Reviewed by James Robinson.
+
+ These methods have now been removed from WebCompositorSupportImpl in
+ chromium and should be removed from the base class. Everything is
+ going through WebLayerTreeSettings now.
+
+ * chromium/public/WebCompositorSupport.h:
+
2012-11-19 Sheriff Bot <[email protected]>
Unreviewed, rolling out r135180.
Modified: trunk/Source/Platform/chromium/public/WebCompositorSupport.h (135215 => 135216)
--- trunk/Source/Platform/chromium/public/WebCompositorSupport.h 2012-11-20 00:49:30 UTC (rev 135215)
+++ trunk/Source/Platform/chromium/public/WebCompositorSupport.h 2012-11-20 01:22:16 UTC (rev 135216)
@@ -67,13 +67,6 @@
// after shutdown.
virtual void shutdown() { }
- // These may only be called before initialize.
- // FIXME: Remove these.
- virtual void setPerTilePaintingEnabled(bool) { }
- virtual void setPartialSwapEnabled(bool) { }
- virtual void setAcceleratedAnimationEnabled(bool) { }
- virtual void setPageScalePinchZoomEnabled(bool) { }
-
// May return 0 if initialization fails.
virtual WebLayerTreeView* createLayerTreeView(WebLayerTreeViewClient*, const WebLayer& root, const WebLayerTreeView::Settings&) { return 0; }
Modified: trunk/Source/WebKit/chromium/tests/GraphicsLayerChromiumTest.cpp (135215 => 135216)
--- trunk/Source/WebKit/chromium/tests/GraphicsLayerChromiumTest.cpp 2012-11-20 00:49:30 UTC (rev 135215)
+++ trunk/Source/WebKit/chromium/tests/GraphicsLayerChromiumTest.cpp 2012-11-20 01:22:16 UTC (rev 135216)
@@ -59,8 +59,6 @@
public:
GraphicsLayerChromiumTest()
{
- // For these tests, we will enable threaded animations.
- Platform::current()->compositorSupport()->setAcceleratedAnimationEnabled(true);
Platform::current()->compositorSupport()->initialize(0);
m_graphicsLayer = static_pointer_cast<GraphicsLayerChromium>(GraphicsLayer::create(&m_client));
m_platformLayer = m_graphicsLayer->platformLayer();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes