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

Unified Diff: app/animation.cc

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/animation.h ('k') | app/menus/menu_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/animation.cc
diff --git a/app/animation.cc b/app/animation.cc
index 28932c9fc311f98565f1f682acb445c31585d112..ff2011706df42cb22fa8a354b02611ce77d8e565 100644
--- a/app/animation.cc
+++ b/app/animation.cc
@@ -107,6 +107,14 @@ bool Animation::ShouldRenderRichAnimation() {
return true;
}
+bool Animation::ShouldSendCanceledFromStop() {
+ return false;
+}
+
void Animation::SetStartTime(base::TimeTicks start_time) {
start_time_ = start_time;
}
+
+base::TimeDelta Animation::GetTimerInterval() const {
+ return timer_interval_;
+}
« no previous file with comments | « app/animation.h ('k') | app/menus/menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698