| Index: cc/layer_tree_host_impl_unittest.cc
|
| diff --git a/cc/layer_tree_host_impl_unittest.cc b/cc/layer_tree_host_impl_unittest.cc
|
| index 56b251956f39add7810a127c50b0d2366154db3f..99e394e90ee7924d0201bc9423e056440084cdad 100644
|
| --- a/cc/layer_tree_host_impl_unittest.cc
|
| +++ b/cc/layer_tree_host_impl_unittest.cc
|
| @@ -2715,7 +2715,7 @@ static inline scoped_ptr<RenderPass> createRenderPassWithResource(ResourceProvid
|
| ResourceProvider::ResourceId resourceId = provider->createResource(0, gfx::Size(1, 1), GL_RGBA, ResourceProvider::TextureUsageAny);
|
|
|
| scoped_ptr<TestRenderPass> pass = TestRenderPass::Create();
|
| - pass->SetNew(RenderPass::Id(1, 1), gfx::Rect(0, 0, 1, 1), gfx::Rect(0, 0, 1, 1), WebTransformationMatrix());
|
| + pass->SetNew(RenderPass::Id(1, 1), gfx::Rect(0, 0, 1, 1), gfx::Rect(0, 0, 1, 1), WebTransformationMatrix(), NULL);
|
| scoped_ptr<SharedQuadState> sharedState = SharedQuadState::Create();
|
| sharedState->SetAll(WebTransformationMatrix(), gfx::Rect(0, 0, 1, 1), gfx::Rect(0, 0, 1, 1), 1);
|
| scoped_ptr<TextureDrawQuad> quad = TextureDrawQuad::Create();
|
| @@ -4199,7 +4199,7 @@ static void configureRenderPassTestData(const char* testScript, RenderPassRemova
|
| // Pre-create root pass
|
| RenderPass::Id rootRenderPassId = RenderPass::Id(testScript[0], testScript[1]);
|
| scoped_ptr<TestRenderPass> pass = TestRenderPass::Create();
|
| - pass->SetNew(rootRenderPassId, gfx::Rect(), gfx::Rect(), WebTransformationMatrix());
|
| + pass->SetNew(rootRenderPassId, gfx::Rect(), gfx::Rect(), WebTransformationMatrix(), NULL);
|
| testData.renderPassCache.add(rootRenderPassId, pass.Pass());
|
| while (*currentChar) {
|
| int layerId = *currentChar;
|
| @@ -4259,7 +4259,7 @@ static void configureRenderPassTestData(const char* testScript, RenderPassRemova
|
| renderer->setHaveCachedResourcesForRenderPassId(newRenderPassId);
|
|
|
| scoped_ptr<TestRenderPass> pass = TestRenderPass::Create();
|
| - pass->SetNew(newRenderPassId, gfx::Rect(), gfx::Rect(), WebTransformationMatrix());
|
| + pass->SetNew(newRenderPassId, gfx::Rect(), gfx::Rect(), WebTransformationMatrix(), NULL);
|
| testData.renderPassCache.add(newRenderPassId, pass.Pass());
|
| }
|
|
|
|
|