| Index: webkit/compositor_bindings/web_compositor_support_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_compositor_support_impl.cc b/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| index 0160dbd91ff41a32d46152dcaa7456b5eb4cb3cb..c788de8ebba9d91e07e5e1b1e4dba25e0aa39f5e 100644
|
| --- a/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| +++ b/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| @@ -11,7 +11,6 @@
|
| #include "webkit/compositor_bindings/web_compositor_support_output_surface.h"
|
| #include "webkit/compositor_bindings/web_compositor_support_software_output_device.h"
|
| #include "webkit/compositor_bindings/web_content_layer_impl.h"
|
| -#include "webkit/compositor_bindings/web_delegated_renderer_layer_impl.h"
|
| #include "webkit/compositor_bindings/web_external_texture_layer_impl.h"
|
| #include "webkit/compositor_bindings/web_float_animation_curve_impl.h"
|
| #include "webkit/compositor_bindings/web_image_layer_impl.h"
|
| @@ -29,7 +28,6 @@ using WebKit::WebAnimation;
|
| using WebKit::WebAnimationCurve;
|
| using WebKit::WebContentLayer;
|
| using WebKit::WebContentLayerClient;
|
| -using WebKit::WebDelegatedRendererLayer;
|
| using WebKit::WebExternalTextureLayer;
|
| using WebKit::WebExternalTextureLayerClient;
|
| using WebKit::WebFloatAnimationCurve;
|
| @@ -120,11 +118,6 @@ WebContentLayer* WebCompositorSupportImpl::createContentLayer(
|
| return new WebKit::WebContentLayerImpl(client);
|
| }
|
|
|
| -WebDelegatedRendererLayer*
|
| - WebCompositorSupportImpl::createDelegatedRendererLayer() {
|
| - return new WebKit::WebDelegatedRendererLayerImpl();
|
| -}
|
| -
|
| WebExternalTextureLayer* WebCompositorSupportImpl::createExternalTextureLayer(
|
| WebExternalTextureLayerClient* client) {
|
| return new WebKit::WebExternalTextureLayerImpl(client);
|
|
|