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

Unified Diff: app/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 | « no previous file | app/animation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/animation.h
diff --git a/app/animation.h b/app/animation.h
index 87dc43ff18c082e86e193ca5dcd1f894b52f64c6..5affe615cbe4b20368728cca6cabe02a8d7ad80b 100644
--- a/app/animation.h
+++ b/app/animation.h
@@ -72,7 +72,7 @@ class Animation : public AnimationContainerElement {
// Invoked from stop to determine if cancel should be invoked. If this returns
// true the delegate is notified the animation was canceled, otherwise the
// delegate is notified the animation stopped.
- virtual bool ShouldSendCanceledFromStop() { return false; }
+ virtual bool ShouldSendCanceledFromStop();
AnimationContainer* container() { return container_.get(); }
base::TimeTicks start_time() const { return start_time_; }
@@ -81,7 +81,7 @@ class Animation : public AnimationContainerElement {
// AnimationContainer::Element overrides
virtual void SetStartTime(base::TimeTicks start_time);
virtual void Step(base::TimeTicks time_now) = 0;
- virtual base::TimeDelta GetTimerInterval() const { return timer_interval_; }
+ virtual base::TimeDelta GetTimerInterval() const;
private:
// Interval for the animation.
« no previous file with comments | « no previous file | app/animation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698