Index: cc/test/fake_output_surface.h |
diff --git a/cc/test/fake_output_surface.h b/cc/test/fake_output_surface.h |
index f7ca21dd16d11044463c856a967efd4794f1730e..2ac236cbb211966ae37ac12f3039f70f1c37e9bf 100644 |
--- a/cc/test/fake_output_surface.h |
+++ b/cc/test/fake_output_surface.h |
@@ -62,11 +62,11 @@ class FakeOutputSurface : public OutputSurface { |
CompositorFrame& last_sent_frame() { return last_sent_frame_; } |
size_t num_sent_frames() { return num_sent_frames_; } |
- virtual void EnableVSyncNotification(bool enable) OVERRIDE; |
- bool vsync_notification_enabled() const { |
- return vsync_notification_enabled_; |
+ virtual void EnableBeginFrameNotification(bool enable) OVERRIDE; |
+ bool begin_frame_notification_enabled() const { |
+ return begin_frame_notification_enabled_; |
} |
- void DidVSync(base::TimeTicks frame_time); |
+ void BeginFrame(base::TimeTicks frame_time); |
private: |
FakeOutputSurface( |
@@ -81,7 +81,7 @@ class FakeOutputSurface : public OutputSurface { |
CompositorFrame last_sent_frame_; |
size_t num_sent_frames_; |
- bool vsync_notification_enabled_; |
+ bool begin_frame_notification_enabled_; |
base::WeakPtrFactory<FakeOutputSurface> weak_ptr_factory_; |
}; |