Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9812)

Unified Diff: content/renderer/compositor_bindings/web_filter_animation_curve_impl.cc

Issue 470983004: Move blink<->cc bindings to cc/blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/compositor_bindings/web_filter_animation_curve_impl.cc
diff --git a/content/renderer/compositor_bindings/web_filter_animation_curve_impl.cc b/content/renderer/compositor_bindings/web_filter_animation_curve_impl.cc
deleted file mode 100644
index c20830337a456d7a2f3d6060455f099240899e3e..0000000000000000000000000000000000000000
--- a/content/renderer/compositor_bindings/web_filter_animation_curve_impl.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// 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_filter_animation_curve_impl.h"
-
-#include "cc/animation/keyframed_animation_curve.h"
-#include "cc/animation/timing_function.h"
-#include "cc/output/filter_operations.h"
-#include "content/renderer/compositor_bindings/web_animation_curve_common.h"
-#include "content/renderer/compositor_bindings/web_filter_operations_impl.h"
-
-using blink::WebFilterKeyframe;
-
-namespace content {
-
-WebFilterAnimationCurveImpl::WebFilterAnimationCurveImpl()
- : curve_(cc::KeyframedFilterAnimationCurve::Create()) {
-}
-
-WebFilterAnimationCurveImpl::~WebFilterAnimationCurveImpl() {
-}
-
-blink::WebCompositorAnimationCurve::AnimationCurveType
-WebFilterAnimationCurveImpl::type() const {
- return WebCompositorAnimationCurve::AnimationCurveTypeFilter;
-}
-
-void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe,
- TimingFunctionType type) {
- const cc::FilterOperations& filter_operations =
- static_cast<const WebFilterOperationsImpl&>(keyframe.value())
- .AsFilterOperations();
- curve_->AddKeyframe(cc::FilterKeyframe::Create(
- keyframe.time(), filter_operations, CreateTimingFunction(type)));
-}
-
-void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe,
- double x1,
- double y1,
- double x2,
- double y2) {
- const cc::FilterOperations& filter_operations =
- static_cast<const WebFilterOperationsImpl&>(keyframe.value())
- .AsFilterOperations();
- curve_->AddKeyframe(cc::FilterKeyframe::Create(
- keyframe.time(),
- filter_operations,
- cc::CubicBezierTimingFunction::Create(x1, y1, x2, y2)
- .PassAs<cc::TimingFunction>()));
-}
-
-scoped_ptr<cc::AnimationCurve>
-WebFilterAnimationCurveImpl::CloneToAnimationCurve() const {
- return curve_->Clone();
-}
-
-} // namespace content
-

Powered by Google App Engine
This is Rietveld 408576698