| Index: cc/test/fake_output_surface.cc
|
| diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc
|
| index bc94f1942a11f5eb946dcdd35eb0a9c49cb53888..82b0f96846104bd1f29518891c2838dd446bcfa3 100644
|
| --- a/cc/test/fake_output_surface.cc
|
| +++ b/cc/test/fake_output_surface.cc
|
| @@ -16,7 +16,8 @@ namespace cc {
|
| FakeOutputSurface::FakeOutputSurface(
|
| scoped_refptr<ContextProvider> context_provider,
|
| bool delegated_rendering)
|
| - : OutputSurface(context_provider),
|
| + : OutputSurface(context_provider,
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes),
|
| client_(NULL),
|
| num_sent_frames_(0),
|
| needs_begin_frame_(false),
|
| @@ -30,7 +31,8 @@ FakeOutputSurface::FakeOutputSurface(
|
|
|
| FakeOutputSurface::FakeOutputSurface(
|
| scoped_ptr<SoftwareOutputDevice> software_device, bool delegated_rendering)
|
| - : OutputSurface(software_device.Pass()),
|
| + : OutputSurface(software_device.Pass(),
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes),
|
| client_(NULL),
|
| num_sent_frames_(0),
|
| forced_draw_to_software_device_(false),
|
| @@ -45,7 +47,9 @@ FakeOutputSurface::FakeOutputSurface(
|
| scoped_refptr<ContextProvider> context_provider,
|
| scoped_ptr<SoftwareOutputDevice> software_device,
|
| bool delegated_rendering)
|
| - : OutputSurface(context_provider, software_device.Pass()),
|
| + : OutputSurface(context_provider,
|
| + software_device.Pass(),
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes),
|
| client_(NULL),
|
| num_sent_frames_(0),
|
| forced_draw_to_software_device_(false),
|
|
|