Index: cc/animation/scrollbar_animation_controller_linear_fade.h |
diff --git a/cc/animation/scrollbar_animation_controller_linear_fade.h b/cc/animation/scrollbar_animation_controller_linear_fade.h |
deleted file mode 100644 |
index 05940a07ffc4f9d66b08191a4de5d2bba32cf5cd..0000000000000000000000000000000000000000 |
--- a/cc/animation/scrollbar_animation_controller_linear_fade.h |
+++ /dev/null |
@@ -1,48 +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_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ |
-#define CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ |
- |
-#include "base/memory/scoped_ptr.h" |
-#include "cc/animation/scrollbar_animation_controller.h" |
-#include "cc/base/cc_export.h" |
- |
-namespace cc { |
-class LayerImpl; |
- |
-class CC_EXPORT ScrollbarAnimationControllerLinearFade |
- : public ScrollbarAnimationController { |
- public: |
- static scoped_ptr<ScrollbarAnimationControllerLinearFade> Create( |
- LayerImpl* scroll_layer, |
- ScrollbarAnimationControllerClient* client, |
- base::TimeDelta delay_before_starting, |
- base::TimeDelta resize_delay_before_starting, |
- base::TimeDelta duration); |
- |
- ~ScrollbarAnimationControllerLinearFade() override; |
- |
- void DidScrollUpdate(bool on_resize) override; |
- |
- protected: |
- ScrollbarAnimationControllerLinearFade( |
- LayerImpl* scroll_layer, |
- ScrollbarAnimationControllerClient* client, |
- base::TimeDelta delay_before_starting, |
- base::TimeDelta resize_delay_before_starting, |
- base::TimeDelta duration); |
- |
- void RunAnimationFrame(float progress) override; |
- |
- private: |
- float OpacityAtTime(base::TimeTicks now) const; |
- void ApplyOpacityToScrollbars(float opacity); |
- |
- DISALLOW_COPY_AND_ASSIGN(ScrollbarAnimationControllerLinearFade); |
-}; |
- |
-} // namespace cc |
- |
-#endif // CC_ANIMATION_SCROLLBAR_ANIMATION_CONTROLLER_LINEAR_FADE_H_ |