| Index: components/mus/ws/platform_display.cc
|
| diff --git a/components/mus/ws/platform_display.cc b/components/mus/ws/platform_display.cc
|
| index a1bdf0f90ab076a07160dfce53abb0e3b3dc05ad..c479594e2a3f1812e9d8d1223dc7b44cf7ca679f 100644
|
| --- a/components/mus/ws/platform_display.cc
|
| +++ b/components/mus/ws/platform_display.cc
|
| @@ -94,7 +94,7 @@ void DrawWindowTree(cc::RenderPass* pass,
|
| bounds_at_origin /* clip_rect */, false /* is_clipped */,
|
| window->opacity(), SkXfermode::kSrcOver_Mode,
|
| 0 /* sorting-context_id */);
|
| - auto quad = pass->CreateAndAppendDrawQuad<cc::SurfaceDrawQuad>();
|
| + auto* quad = pass->CreateAndAppendDrawQuad<cc::SurfaceDrawQuad>();
|
| quad->SetAll(sqs, bounds_at_origin /* rect */,
|
| gfx::Rect() /* opaque_rect */,
|
| bounds_at_origin /* visible_rect */, true /* needs_blending*/,
|
| @@ -116,7 +116,7 @@ void DrawWindowTree(cc::RenderPass* pass,
|
| window->opacity(), SkXfermode::kSrcOver_Mode,
|
| 0 /* sorting-context_id */);
|
|
|
| - auto quad = pass->CreateAndAppendDrawQuad<cc::SurfaceDrawQuad>();
|
| + auto* quad = pass->CreateAndAppendDrawQuad<cc::SurfaceDrawQuad>();
|
| quad->SetAll(sqs, bounds_at_origin /* rect */,
|
| gfx::Rect() /* opaque_rect */,
|
| bounds_at_origin /* visible_rect */, true /* needs_blending*/,
|
|
|