| Index: cc/output/output_surface_unittest.cc
|
| diff --git a/cc/output/output_surface_unittest.cc b/cc/output/output_surface_unittest.cc
|
| index 54fd3a1adc5cacf2dca5aea0ff9a3cb336ec4d7f..29865c87228ba378b998761fb33079272a41804f 100644
|
| --- a/cc/output/output_surface_unittest.cc
|
| +++ b/cc/output/output_surface_unittest.cc
|
| @@ -22,15 +22,18 @@ namespace {
|
| class TestOutputSurface : public OutputSurface {
|
| public:
|
| explicit TestOutputSurface(scoped_refptr<ContextProvider> context_provider)
|
| - : OutputSurface(context_provider) {}
|
| + : OutputSurface(context_provider,
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes) {}
|
|
|
| explicit TestOutputSurface(
|
| scoped_ptr<cc::SoftwareOutputDevice> software_device)
|
| - : OutputSurface(software_device.Pass()) {}
|
| + : OutputSurface(software_device.Pass(),
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes) {}
|
|
|
| TestOutputSurface(scoped_refptr<ContextProvider> context_provider,
|
| scoped_ptr<cc::SoftwareOutputDevice> software_device)
|
| - : OutputSurface(context_provider, software_device.Pass()) {}
|
| + : OutputSurface(context_provider, software_device.Pass(),
|
| + OutputSurface::kDefaultMaxTransferBufferUsageBytes) {}
|
|
|
| bool InitializeNewContext3d(
|
| scoped_refptr<ContextProvider> new_context_provider) {
|
|
|