diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-15 12:25:33 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-15 12:25:33 +0000 |
commit | 5532776735c3b4b10950a31729e99b8015be28df (patch) | |
tree | 05c880732831a7eef24baf0088043794b2b5fdf0 /app/animation_container_element.h | |
parent | 891441f8ffdefa94574b4083b008f67ac5f81be0 (diff) | |
download | chromium_src-5532776735c3b4b10950a31729e99b8015be28df.zip chromium_src-5532776735c3b4b10950a31729e99b8015be28df.tar.gz chromium_src-5532776735c3b4b10950a31729e99b8015be28df.tar.bz2 |
app: Remove animation header files.
They were moved to ui/base/animation. Remove them now, since no one is including these files.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/6243002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/animation_container_element.h')
-rw-r--r-- | app/animation_container_element.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app/animation_container_element.h b/app/animation_container_element.h deleted file mode 100644 index 57793f6..0000000 --- a/app/animation_container_element.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2010 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 APP_ANIMATION_CONTAINER_ELEMENT_H_ -#define APP_ANIMATION_CONTAINER_ELEMENT_H_ -#pragma once - -#include "base/time.h" - -// Interface for the elements the AnimationContainer contains. This is -// implemented by Animation. -class AnimationContainerElement { - public: - // Sets the start of the animation. This is invoked from - // AnimationContainer::Start. - virtual void SetStartTime(base::TimeTicks start_time) = 0; - - // Invoked when the animation is to progress. - virtual void Step(base::TimeTicks time_now) = 0; - - // Returns the time interval of the animation. If an Element needs to change - // this it should first invoke Stop, then Start. - virtual base::TimeDelta GetTimerInterval() const = 0; - - protected: - virtual ~AnimationContainerElement() {} -}; - -#endif // APP_ANIMATION_CONTAINER_ELEMENT_H_ |