| Index: cc/test/FakeWebCompositorOutputSurface.h
|
| diff --git a/cc/test/FakeWebCompositorOutputSurface.h b/cc/test/FakeWebCompositorOutputSurface.h
|
| index c056faf26ccd96e2bafa20d9dd1b3ccbee844bf0..179576f54cb09e27e6b772a9252679c9c54eea5d 100644
|
| --- a/cc/test/FakeWebCompositorOutputSurface.h
|
| +++ b/cc/test/FakeWebCompositorOutputSurface.h
|
| @@ -18,12 +18,12 @@ class FakeWebCompositorOutputSurface : public WebCompositorOutputSurface {
|
| public:
|
| static inline scoped_ptr<FakeWebCompositorOutputSurface> create(PassOwnPtr<WebGraphicsContext3D> context3D)
|
| {
|
| - return scoped_ptr<FakeWebCompositorOutputSurface>(new FakeWebCompositorOutputSurface(context3D));
|
| + return make_scoped_ptr(new FakeWebCompositorOutputSurface(context3D));
|
| }
|
|
|
| static inline scoped_ptr<FakeWebCompositorOutputSurface> createSoftware(PassOwnPtr<WebCompositorSoftwareOutputDevice> softwareDevice)
|
| {
|
| - return scoped_ptr<FakeWebCompositorOutputSurface>(new FakeWebCompositorOutputSurface(softwareDevice));
|
| + return make_scoped_ptr(new FakeWebCompositorOutputSurface(softwareDevice));
|
| }
|
|
|
| virtual bool bindToClient(WebCompositorOutputSurfaceClient* client) OVERRIDE
|
|
|