Index: cc/test/fake_output_surface.h |
diff --git a/cc/test/fake_output_surface.h b/cc/test/fake_output_surface.h |
index 37c0c54a39c5a31351f1bb4f490463e7e2170c81..75f3daf56b57d36661f4481bf059bb2e08e10cec 100644 |
--- a/cc/test/fake_output_surface.h |
+++ b/cc/test/fake_output_surface.h |
@@ -94,9 +94,6 @@ class FakeOutputSurface : public OutputSurface { |
virtual void SwapBuffers(CompositorFrame* frame) override; |
- virtual void SetNeedsBeginFrame(bool enable) override; |
- bool needs_begin_frame() const { return needs_begin_frame_; } |
- |
virtual 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 |