| Index: cc/test/fake_output_surface.cc
|
| diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc
|
| index 6d1e972aa7e33a47bb8295b545c9ec4bf067d4e9..a3120416acb253d9fe50f76e97a0131b9bb599ed 100644
|
| --- a/cc/test/fake_output_surface.cc
|
| +++ b/cc/test/fake_output_surface.cc
|
| @@ -7,13 +7,15 @@
|
| namespace cc {
|
|
|
| FakeOutputSurface::FakeOutputSurface(
|
| - scoped_ptr<WebKit::WebGraphicsContext3D> context3d) {
|
| + scoped_ptr<WebKit::WebGraphicsContext3D> context3d, bool has_parent) {
|
| context3d_ = context3d.Pass();
|
| + capabilities_.has_parent_compositor = has_parent;
|
| }
|
|
|
| FakeOutputSurface::FakeOutputSurface(
|
| - scoped_ptr<SoftwareOutputDevice> software_device) {
|
| + scoped_ptr<SoftwareOutputDevice> software_device, bool has_parent) {
|
| software_device_ = software_device.Pass();
|
| + capabilities_.has_parent_compositor = has_parent;
|
| }
|
|
|
| FakeOutputSurface::~FakeOutputSurface() {}
|
|
|