Index: cc/test/fake_output_surface.cc |
diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc |
index f7819ba668b286b9f934997d0a537112cea508f5..6894f991f3673de678493d8fd79abb89d681247b 100644 |
--- a/cc/test/fake_output_surface.cc |
+++ b/cc/test/fake_output_surface.cc |
@@ -15,7 +15,7 @@ FakeOutputSurface::FakeOutputSurface( |
scoped_ptr<WebKit::WebGraphicsContext3D> context3d, bool has_parent) |
: OutputSurface(context3d.Pass()), |
num_sent_frames_(0), |
- vsync_notification_enabled_(false), |
+ needs_begin_impl_frame_(false), |
weak_ptr_factory_(this) { |
capabilities_.has_parent_compositor = has_parent; |
} |
@@ -39,12 +39,12 @@ void FakeOutputSurface::SendFrameToParentCompositor( |
weak_ptr_factory_.GetWeakPtr())); |
} |
-void FakeOutputSurface::EnableVSyncNotification(bool enable) { |
- vsync_notification_enabled_ = enable; |
+void FakeOutputSurface::SetNeedsBeginImplFrame(bool enable) { |
+ needs_begin_impl_frame_ = enable; |
} |
-void FakeOutputSurface::DidVSync(base::TimeTicks frame_time) { |
- client_->DidVSync(frame_time); |
+void FakeOutputSurface::BeginImplFrame(base::TimeTicks frame_time) { |
+ client_->BeginImplFrame(frame_time); |
} |
void FakeOutputSurface::SendFrameAck() { |