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

Unified Diff: cc/test/layer_tree_test.cc

Issue 429743003: Rename Animate as Begin(Main)Frame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a typo that made tests fail. Created 6 years, 4 months 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
Index: cc/test/layer_tree_test.cc
diff --git a/cc/test/layer_tree_test.cc b/cc/test/layer_tree_test.cc
index d72860d81cef30e481f98738ed2115c79b8fcb23..93dd3e8213a7f147161f77d02d682799ff303cdf 100644
--- a/cc/test/layer_tree_test.cc
+++ b/cc/test/layer_tree_test.cc
@@ -276,8 +276,8 @@ class LayerTreeHostClientForTesting : public LayerTreeHostClient,
test_hooks_->DidBeginMainFrame();
}
- virtual void Animate(base::TimeTicks monotonic_time) OVERRIDE {
- test_hooks_->Animate(monotonic_time);
+ virtual void BeginMainFrame(const BeginFrameArgs& args) OVERRIDE {
+ test_hooks_->BeginMainFrame(args);
}
virtual void Layout() OVERRIDE { test_hooks_->Layout(); }

Powered by Google App Engine
This is Rietveld 408576698