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

Unified Diff: cc/test/fake_layer_tree_host_impl.h

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/fake_layer_tree_host_impl.h
diff --git a/cc/test/fake_layer_tree_host_impl.h b/cc/test/fake_layer_tree_host_impl.h
index 38957a8bbd11d4a58aada83276512b5703d27e36..0b6340c9dc13ccd87075299c8b201bd6b0c93c1a 100644
--- a/cc/test/fake_layer_tree_host_impl.h
+++ b/cc/test/fake_layer_tree_host_impl.h
@@ -28,14 +28,14 @@ class FakeLayerTreeHostImpl : public LayerTreeHostImpl {
virtual void CreatePendingTree() OVERRIDE;
- virtual base::TimeTicks CurrentFrameTimeTicks() OVERRIDE;
- void SetCurrentFrameTimeTicks(base::TimeTicks current_frame_time_ticks);
+ virtual BeginFrameArgs CurrentBeginFrameArgs() const OVERRIDE;
+ void SetCurrentFrameTimeTicks(base::TimeTicks time_ticks);
using LayerTreeHostImpl::ActivateSyncTree;
using LayerTreeHostImpl::manage_tiles_needed;
private:
- base::TimeTicks current_frame_time_ticks_;
+ BeginFrameArgs current_begin_frame_args_;
FakeLayerTreeHostImplClient client_;
FakeRenderingStatsInstrumentation stats_instrumentation_;
};

Powered by Google App Engine
This is Rietveld 408576698