| Index: content/browser/renderer_host/test_backing_store.h
|
| diff --git a/content/browser/renderer_host/test_backing_store.h b/content/browser/renderer_host/test_backing_store.h
|
| index 2b78d728a1ea4debe978a9c3853b8e61c3adc0a2..5dbfa3f9d08616cdcfabda6a1e91f7c33aeb1fde 100644
|
| --- a/content/browser/renderer_host/test_backing_store.h
|
| +++ b/content/browser/renderer_host/test_backing_store.h
|
| @@ -15,17 +15,18 @@ class TestBackingStore : public BackingStore {
|
| virtual ~TestBackingStore();
|
|
|
| // BackingStore implementation.
|
| - virtual void PaintToBackingStore(RenderProcessHost* process,
|
| - TransportDIB::Id bitmap,
|
| - const gfx::Rect& bitmap_rect,
|
| - const std::vector<gfx::Rect>& copy_rects,
|
| - const base::Closure& completion_callback,
|
| - bool* scheduled_completion_callback);
|
| + virtual void PaintToBackingStore(
|
| + RenderProcessHost* process,
|
| + TransportDIB::Id bitmap,
|
| + const gfx::Rect& bitmap_rect,
|
| + const std::vector<gfx::Rect>& copy_rects,
|
| + const base::Closure& completion_callback,
|
| + bool* scheduled_completion_callback) OVERRIDE;
|
| virtual bool CopyFromBackingStore(const gfx::Rect& rect,
|
| - skia::PlatformCanvas* output);
|
| + skia::PlatformCanvas* output) OVERRIDE;
|
| virtual void ScrollBackingStore(int dx, int dy,
|
| const gfx::Rect& clip_rect,
|
| - const gfx::Size& view_size);
|
| + const gfx::Size& view_size) OVERRIDE;
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(TestBackingStore);
|
| };
|
|
|