| Index: webkit/compositor_bindings/test/web_layer_tree_view_test_common.h
|
| diff --git a/webkit/compositor_bindings/test/web_layer_tree_view_test_common.h b/webkit/compositor_bindings/test/web_layer_tree_view_test_common.h
|
| index a2e92229cf1686d01a4e7af371b59d0059cd011b..7a1ae6b516dea39a8b659f28a33b63dbae61b9ba 100644
|
| --- a/webkit/compositor_bindings/test/web_layer_tree_view_test_common.h
|
| +++ b/webkit/compositor_bindings/test/web_layer_tree_view_test_common.h
|
| @@ -6,7 +6,7 @@
|
| #define WebLayerTreeViewTestCommon_h
|
|
|
| #include "cc/test/compositor_fake_web_graphics_context_3d.h"
|
| -#include "cc/test/fake_web_compositor_output_surface.h"
|
| +#include "cc/test/fake_output_surface.h"
|
| #include <gmock/gmock.h>
|
| #include <public/WebLayerTreeViewClient.h>
|
|
|
| @@ -21,9 +21,9 @@ public:
|
| virtual void layout() OVERRIDE { }
|
| virtual void applyScrollAndScale(const WebSize& scrollDelta, float scaleFactor) OVERRIDE { }
|
|
|
| - virtual WebCompositorOutputSurface* createOutputSurface() OVERRIDE
|
| + virtual cc::OutputSurface* createOutputSurface() OVERRIDE
|
| {
|
| - return FakeWebCompositorOutputSurface::create(CompositorFakeWebGraphicsContext3D::create(WebGraphicsContext3D::Attributes()).PassAs<WebKit::WebGraphicsContext3D>()).release();
|
| + return cc::FakeOutputSurface::Create3d(CompositorFakeWebGraphicsContext3D::create(WebGraphicsContext3D::Attributes()).PassAs<WebKit::WebGraphicsContext3D>()).release();
|
| }
|
| virtual void didRecreateOutputSurface(bool) OVERRIDE { }
|
|
|
|
|