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

Unified Diff: cc/test/animation_test_common.h

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « cc/surfaces/surface_aggregator.cc ('k') | cc/test/animation_test_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/animation_test_common.h
diff --git a/cc/test/animation_test_common.h b/cc/test/animation_test_common.h
deleted file mode 100644
index b2909b8711fcf82da8238fc12bafed87bd00874f..0000000000000000000000000000000000000000
--- a/cc/test/animation_test_common.h
+++ /dev/null
@@ -1,182 +0,0 @@
-// Copyright 2012 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.
-
-#ifndef CC_TEST_ANIMATION_TEST_COMMON_H_
-#define CC_TEST_ANIMATION_TEST_COMMON_H_
-
-#include "cc/animation/animation.h"
-#include "cc/animation/animation_curve.h"
-#include "cc/animation/layer_animation_controller.h"
-#include "cc/animation/layer_animation_value_observer.h"
-#include "cc/animation/layer_animation_value_provider.h"
-#include "cc/output/filter_operations.h"
-#include "cc/test/geometry_test_utils.h"
-
-namespace cc {
-class LayerImpl;
-class Layer;
-}
-
-namespace cc {
-
-class FakeFloatAnimationCurve : public FloatAnimationCurve {
- public:
- FakeFloatAnimationCurve();
- explicit FakeFloatAnimationCurve(double duration);
- ~FakeFloatAnimationCurve() override;
-
- base::TimeDelta Duration() const override;
- float GetValue(base::TimeDelta now) const override;
- scoped_ptr<AnimationCurve> Clone() const override;
-
- private:
- base::TimeDelta duration_;
-};
-
-class FakeTransformTransition : public TransformAnimationCurve {
- public:
- explicit FakeTransformTransition(double duration);
- ~FakeTransformTransition() override;
-
- base::TimeDelta Duration() const override;
- gfx::Transform GetValue(base::TimeDelta time) const override;
- bool AnimatedBoundsForBox(const gfx::BoxF& box,
- gfx::BoxF* bounds) const override;
- bool AffectsScale() const override;
- bool IsTranslation() const override;
- bool PreservesAxisAlignment() const override;
- bool MaximumTargetScale(bool forward_direction,
- float* max_scale) const override;
-
- scoped_ptr<AnimationCurve> Clone() const override;
-
- private:
- base::TimeDelta duration_;
-};
-
-class FakeFloatTransition : public FloatAnimationCurve {
- public:
- FakeFloatTransition(double duration, float from, float to);
- ~FakeFloatTransition() override;
-
- base::TimeDelta Duration() const override;
- float GetValue(base::TimeDelta time) const override;
-
- scoped_ptr<AnimationCurve> Clone() const override;
-
- private:
- base::TimeDelta duration_;
- float from_;
- float to_;
-};
-
-class FakeLayerAnimationValueObserver : public LayerAnimationValueObserver {
- public:
- FakeLayerAnimationValueObserver();
- ~FakeLayerAnimationValueObserver() override;
-
- // LayerAnimationValueObserver implementation
- void OnFilterAnimated(const FilterOperations& filters) override;
- void OnOpacityAnimated(float opacity) override;
- void OnTransformAnimated(const gfx::Transform& transform) override;
- void OnScrollOffsetAnimated(const gfx::ScrollOffset& scroll_offset) override;
- void OnAnimationWaitingForDeletion() override;
- bool IsActive() const override;
-
- const FilterOperations& filters() const { return filters_; }
- float opacity() const { return opacity_; }
- const gfx::Transform& transform() const { return transform_; }
- gfx::ScrollOffset scroll_offset() { return scroll_offset_; }
-
- bool animation_waiting_for_deletion() {
- return animation_waiting_for_deletion_;
- }
-
- private:
- FilterOperations filters_;
- float opacity_;
- gfx::Transform transform_;
- gfx::ScrollOffset scroll_offset_;
- bool animation_waiting_for_deletion_;
-};
-
-class FakeInactiveLayerAnimationValueObserver
- : public FakeLayerAnimationValueObserver {
- public:
- bool IsActive() const override;
-};
-
-class FakeLayerAnimationValueProvider : public LayerAnimationValueProvider {
- public:
- gfx::ScrollOffset ScrollOffsetForAnimation() const override;
-
- void set_scroll_offset(const gfx::ScrollOffset& scroll_offset) {
- scroll_offset_ = scroll_offset;
- }
-
- private:
- gfx::ScrollOffset scroll_offset_;
-};
-
-int AddOpacityTransitionToController(LayerAnimationController* controller,
- double duration,
- float start_opacity,
- float end_opacity,
- bool use_timing_function);
-
-int AddAnimatedTransformToController(LayerAnimationController* controller,
- double duration,
- int delta_x,
- int delta_y);
-
-int AddAnimatedFilterToController(LayerAnimationController* controller,
- double duration,
- float start_brightness,
- float end_brightness);
-
-int AddOpacityTransitionToLayer(Layer* layer,
- double duration,
- float start_opacity,
- float end_opacity,
- bool use_timing_function);
-
-int AddOpacityTransitionToLayer(LayerImpl* layer,
- double duration,
- float start_opacity,
- float end_opacity,
- bool use_timing_function);
-
-int AddAnimatedTransformToLayer(Layer* layer,
- double duration,
- int delta_x,
- int delta_y);
-
-int AddAnimatedTransformToLayer(LayerImpl* layer,
- double duration,
- int delta_x,
- int delta_y);
-
-int AddAnimatedTransformToLayer(Layer* layer,
- double duration,
- TransformOperations start_operations,
- TransformOperations operations);
-
-int AddAnimatedTransformToLayer(LayerImpl* layer,
- double duration,
- TransformOperations start_operations,
- TransformOperations operations);
-
-int AddAnimatedFilterToLayer(Layer* layer,
- double duration,
- float start_brightness,
- float end_brightness);
-
-int AddAnimatedFilterToLayer(LayerImpl* layer,
- double duration,
- float start_brightness,
- float end_brightness);
-
-} // namespace cc
-
-#endif // CC_TEST_ANIMATION_TEST_COMMON_H_
« no previous file with comments | « cc/surfaces/surface_aggregator.cc ('k') | cc/test/animation_test_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698