| Index: cc/blink/web_transform_animation_curve_impl.cc
 | 
| diff --git a/content/renderer/compositor_bindings/web_transform_animation_curve_impl.cc b/cc/blink/web_transform_animation_curve_impl.cc
 | 
| similarity index 87%
 | 
| rename from content/renderer/compositor_bindings/web_transform_animation_curve_impl.cc
 | 
| rename to cc/blink/web_transform_animation_curve_impl.cc
 | 
| index 78718ee95eef8a73624e93dadc2717dad14f5d02..a6d19dabaaddd373032a3854330f6df91721fe52 100644
 | 
| --- a/content/renderer/compositor_bindings/web_transform_animation_curve_impl.cc
 | 
| +++ b/cc/blink/web_transform_animation_curve_impl.cc
 | 
| @@ -2,17 +2,17 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "content/renderer/compositor_bindings/web_transform_animation_curve_impl.h"
 | 
| +#include "cc/blink/web_transform_animation_curve_impl.h"
 | 
|  
 | 
|  #include "cc/animation/keyframed_animation_curve.h"
 | 
|  #include "cc/animation/timing_function.h"
 | 
|  #include "cc/animation/transform_operations.h"
 | 
| -#include "content/renderer/compositor_bindings/web_animation_curve_common.h"
 | 
| -#include "content/renderer/compositor_bindings/web_transform_operations_impl.h"
 | 
| +#include "cc/blink/web_animation_curve_common.h"
 | 
| +#include "cc/blink/web_transform_operations_impl.h"
 | 
|  
 | 
|  using blink::WebTransformKeyframe;
 | 
|  
 | 
| -namespace content {
 | 
| +namespace cc_blink {
 | 
|  
 | 
|  WebTransformAnimationCurveImpl::WebTransformAnimationCurveImpl()
 | 
|      : curve_(cc::KeyframedTransformAnimationCurve::Create()) {
 | 
| @@ -59,5 +59,4 @@ WebTransformAnimationCurveImpl::CloneToAnimationCurve() const {
 | 
|    return curve_->Clone();
 | 
|  }
 | 
|  
 | 
| -}  // namespace content
 | 
| -
 | 
| +}  // namespace cc_blink
 | 
| 
 |