Index: cc/test/fake_output_surface.h |
diff --git a/cc/test/fake_output_surface.h b/cc/test/fake_output_surface.h |
index 59c9a8c30e29e0c92b7f65158ddf0d81adccc28d..f28fcccf58602f65ea2f5f9538d99d5e7a0e3b65 100644 |
--- a/cc/test/fake_output_surface.h |
+++ b/cc/test/fake_output_surface.h |
@@ -94,9 +94,6 @@ class FakeOutputSurface : public OutputSurface { |
void SwapBuffers(CompositorFrame* frame) override; |
- void SetNeedsBeginFrame(bool enable) override; |
- bool needs_begin_frame() const { return needs_begin_frame_; } |
- |
bool BindToClient(OutputSurfaceClient* client) override; |
using OutputSurface::ReleaseGL; |
@@ -137,18 +134,13 @@ class FakeOutputSurface : public OutputSurface { |
scoped_ptr<SoftwareOutputDevice> software_device, |
bool delegated_rendering); |
- void OnBeginFrame(); |
- |
OutputSurfaceClient* client_; |
CompositorFrame last_sent_frame_; |
size_t num_sent_frames_; |
- bool needs_begin_frame_; |
bool has_external_stencil_test_; |
TransferableResourceArray resources_held_by_parent_; |
scoped_ptr<ManagedMemoryPolicy> memory_policy_to_set_at_bind_; |
gfx::Rect last_swap_rect_; |
- |
- base::WeakPtrFactory<FakeOutputSurface> fake_weak_ptr_factory_; |
}; |
} // namespace cc |