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

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: Build fix. 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 b9d506386f7368abdbca38dea6781c7e453505ca..949c80215d79bf7c7de345b96f1da8f2d0fe7122 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