| Index: cc/trees/layer_tree_host_unittest.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
|
| index df4643a22409e6b08e0c1bc497b1b7d8ac587f4a..41aa2e5aede9e5c0739830f0a2737071c9ca9aca 100644
|
| --- a/cc/trees/layer_tree_host_unittest.cc
|
| +++ b/cc/trees/layer_tree_host_unittest.cc
|
| @@ -2390,7 +2390,8 @@ class MockIOSurfaceWebGraphicsContext3D : public FakeWebGraphicsContext3D {
|
|
|
| class LayerTreeHostTestIOSurfaceDrawing : public LayerTreeHostTest {
|
| protected:
|
| - virtual scoped_ptr<OutputSurface> CreateOutputSurface() OVERRIDE {
|
| + virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback)
|
| + OVERRIDE {
|
| scoped_ptr<MockIOSurfaceWebGraphicsContext3D> context(
|
| new MockIOSurfaceWebGraphicsContext3D);
|
| mock_context_ = context.get();
|
| @@ -2575,7 +2576,8 @@ class LayerTreeHostTestAsyncReadback : public LayerTreeHostTest {
|
| EXPECT_EQ(4u, callbacks_.size());
|
| }
|
|
|
| - virtual scoped_ptr<OutputSurface> CreateOutputSurface() OVERRIDE {
|
| + virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback)
|
| + OVERRIDE {
|
| if (use_gl_renderer_)
|
| return FakeOutputSurface::Create3d().PassAs<OutputSurface>();
|
| return FakeOutputSurface::CreateSoftware(
|
| @@ -3113,7 +3115,8 @@ class LayerTreeHostTestDeferredInitialize : public LayerTreeHostTest {
|
| PostSetNeedsCommitToMainThread();
|
| }
|
|
|
| - virtual scoped_ptr<OutputSurface> CreateOutputSurface() OVERRIDE {
|
| + virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback)
|
| + OVERRIDE {
|
| scoped_ptr<TestWebGraphicsContext3D> context3d(
|
| TestWebGraphicsContext3D::Create());
|
| context3d->set_support_swapbuffers_complete_callback(false);
|
|
|