diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-17 16:45:34 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-17 16:45:34 +0000 |
commit | bc9147a10c7287f285ddc1c246cc9d38cd5987c4 (patch) | |
tree | 0e8516815d0fd31b439a4cebe4baf8e9e94c98d6 /chrome/common/slide_animation.cc | |
parent | c12bf1a1aa1a24d7f516b7e76428518c594d7da5 (diff) | |
download | chromium_src-bc9147a10c7287f285ddc1c246cc9d38cd5987c4.zip chromium_src-bc9147a10c7287f285ddc1c246cc9d38cd5987c4.tar.gz chromium_src-bc9147a10c7287f285ddc1c246cc9d38cd5987c4.tar.bz2 |
Some initial work on compiling chrome/common/ on Linux.
Patch from Pawel Hajdan Jr.
BUG=2410
Review URL: http://codereview.chromium.org/2929
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/slide_animation.cc')
-rw-r--r-- | chrome/common/slide_animation.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/slide_animation.cc b/chrome/common/slide_animation.cc index 47a48c6..67d4023 100644 --- a/chrome/common/slide_animation.cc +++ b/chrome/common/slide_animation.cc @@ -15,11 +15,11 @@ static const int kDefaultDurationMs = 120; SlideAnimation::SlideAnimation(AnimationDelegate* target) : Animation(kDefaultFramerateHz, target), target_(target), + tween_type_(EASE_OUT), showing_(false), value_start_(0), value_end_(0), value_current_(0), - tween_type_(EASE_OUT), slide_duration_(kDefaultDurationMs) { } |