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_output_surface.cc

Issue 640023004: cc: Make OutputSurface::SwapBuffers pure virtual (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@latinfo
Patch Set: and rebase Created 6 years, 2 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_output_surface.cc
diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc
index 29680de50e0d115fa49e20059d349c905e3aaa7b..df9c0f7ae3d3b4eca2118eb57b48cd6e3e30cf13 100644
--- a/cc/test/fake_output_surface.cc
+++ b/cc/test/fake_output_surface.cc
@@ -73,13 +73,13 @@ void FakeOutputSurface::SwapBuffers(CompositorFrame* frame) {
}
++num_sent_frames_;
- PostSwapBuffersComplete();
- client_->DidSwapBuffers();
} else {
- OutputSurface::SwapBuffers(frame);
+ last_swap_rect_ = frame->gl_frame_data->sub_buffer_rect;
frame->AssignTo(&last_sent_frame_);
++num_sent_frames_;
}
+ PostSwapBuffersComplete();
+ client_->DidSwapBuffers();
}
void FakeOutputSurface::SetNeedsBeginFrame(bool enable) {

Powered by Google App Engine
This is Rietveld 408576698