| Index: cc/blink/web_compositor_support_impl.cc
|
| diff --git a/cc/blink/web_compositor_support_impl.cc b/cc/blink/web_compositor_support_impl.cc
|
| index f50594e0f9d61bb0a32e90672cf0696b96dda5eb..2a4ede096e11ec54eeb8c5d3654b0a8548c36acb 100644
|
| --- a/cc/blink/web_compositor_support_impl.cc
|
| +++ b/cc/blink/web_compositor_support_impl.cc
|
| @@ -12,15 +12,9 @@
|
| #include "cc/blink/web_content_layer_impl.h"
|
| #include "cc/blink/web_display_item_list_impl.h"
|
| #include "cc/blink/web_external_texture_layer_impl.h"
|
| -#include "cc/blink/web_filter_animation_curve_impl.h"
|
| -#include "cc/blink/web_filter_operations_impl.h"
|
| -#include "cc/blink/web_float_animation_curve_impl.h"
|
| #include "cc/blink/web_image_layer_impl.h"
|
| #include "cc/blink/web_layer_impl.h"
|
| -#include "cc/blink/web_scroll_offset_animation_curve_impl.h"
|
| #include "cc/blink/web_scrollbar_layer_impl.h"
|
| -#include "cc/blink/web_transform_animation_curve_impl.h"
|
| -#include "cc/blink/web_transform_operations_impl.h"
|
| #include "cc/layers/layer.h"
|
| #include "cc/output/output_surface.h"
|
| #include "cc/output/software_output_device.h"
|
| @@ -35,7 +29,6 @@ using blink::WebDisplayItemList;
|
| using blink::WebExternalTextureLayer;
|
| using blink::WebExternalTextureLayerClient;
|
| using blink::WebFilterAnimationCurve;
|
| -using blink::WebFilterOperations;
|
| using blink::WebFloatAnimationCurve;
|
| using blink::WebImageLayer;
|
| using blink::WebLayer;
|
| @@ -43,9 +36,7 @@ using blink::WebScrollbar;
|
| using blink::WebScrollbarLayer;
|
| using blink::WebScrollbarThemeGeometry;
|
| using blink::WebScrollbarThemePainter;
|
| -using blink::WebScrollOffsetAnimationCurve;
|
| using blink::WebTransformAnimationCurve;
|
| -using blink::WebTransformOperations;
|
|
|
| namespace cc_blink {
|
|
|
| @@ -103,37 +94,6 @@ WebCompositorAnimation* WebCompositorSupportImpl::createAnimation(
|
| return new WebCompositorAnimationImpl(curve, target, animation_id, group_id);
|
| }
|
|
|
| -WebFilterAnimationCurve*
|
| -WebCompositorSupportImpl::createFilterAnimationCurve() {
|
| - return new WebFilterAnimationCurveImpl();
|
| -}
|
| -
|
| -WebFloatAnimationCurve* WebCompositorSupportImpl::createFloatAnimationCurve() {
|
| - return new WebFloatAnimationCurveImpl();
|
| -}
|
| -
|
| -WebScrollOffsetAnimationCurve*
|
| -WebCompositorSupportImpl::createScrollOffsetAnimationCurve(
|
| - blink::WebFloatPoint target_value,
|
| - WebCompositorAnimationCurve::TimingFunctionType timing_function,
|
| - WebScrollOffsetAnimationCurve::ScrollDurationBehavior duration_behavior) {
|
| - return new WebScrollOffsetAnimationCurveImpl(target_value, timing_function,
|
| - duration_behavior);
|
| -}
|
| -
|
| -WebTransformAnimationCurve*
|
| -WebCompositorSupportImpl::createTransformAnimationCurve() {
|
| - return new WebTransformAnimationCurveImpl();
|
| -}
|
| -
|
| -WebTransformOperations* WebCompositorSupportImpl::createTransformOperations() {
|
| - return new WebTransformOperationsImpl();
|
| -}
|
| -
|
| -WebFilterOperations* WebCompositorSupportImpl::createFilterOperations() {
|
| - return new WebFilterOperationsImpl();
|
| -}
|
| -
|
| WebCompositorAnimationPlayer*
|
| WebCompositorSupportImpl::createAnimationPlayer() {
|
| return new WebCompositorAnimationPlayerImpl();
|
|
|