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

Unified Diff: app/slide_animation.h

Issue 5574006: Start deinlining non-empty virtual methods. (This will be automatically checked (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove virtual from VideoFrame::type() Created 10 years 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 | « app/menus/menu_model.cc ('k') | app/slide_animation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/slide_animation.h
diff --git a/app/slide_animation.h b/app/slide_animation.h
index d073db16adc9e5ac2a8a9314380b3e9a88ddeb93..7c7744530f5d13de6baa375750ab1d4627c9cdd8 100644
--- a/app/slide_animation.h
+++ b/app/slide_animation.h
@@ -61,11 +61,11 @@ class SlideAnimation : public LinearAnimation {
// Sets the time a slide will take. Note that this isn't actually
// the amount of time an animation will take as the current value of
// the slide is considered.
- virtual void SetSlideDuration(int duration) { slide_duration_ = duration; }
+ virtual void SetSlideDuration(int duration);
int GetSlideDuration() const { return slide_duration_; }
void SetTweenType(Tween::Type tween_type) { tween_type_ = tween_type; }
- virtual double GetCurrentValue() const { return value_current_; }
+ virtual double GetCurrentValue() const;
bool IsShowing() const { return showing_; }
bool IsClosing() const { return !showing_ && value_end_ < value_current_; }
« no previous file with comments | « app/menus/menu_model.cc ('k') | app/slide_animation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698