| Index: mojo/converters/surfaces/custom_surface_converter.h
|
| diff --git a/mojo/converters/surfaces/custom_surface_converter.h b/mojo/converters/surfaces/custom_surface_converter.h
|
| index e0f9e72976257a998d4f034de3ed9893d061f220..9f03835e6aac555ae599463db97727193aba929e 100644
|
| --- a/mojo/converters/surfaces/custom_surface_converter.h
|
| +++ b/mojo/converters/surfaces/custom_surface_converter.h
|
| @@ -16,9 +16,12 @@ namespace mojo {
|
| // for converting a mojo::SurfaceDrawState to something cc understands.
|
| class CustomSurfaceConverter {
|
| public:
|
| - virtual bool ConvertSurfaceDrawQuad(const QuadPtr& input,
|
| - cc::SharedQuadState* sqs,
|
| - cc::RenderPass* render_pass) = 0;
|
| + virtual bool ConvertSurfaceDrawQuad(
|
| + const QuadPtr& input,
|
| + const CompositorFrameMetadataPtr& metadata,
|
| + cc::SharedQuadState* sqs,
|
| + cc::RenderPass* render_pass) = 0;
|
| +
|
| protected:
|
| virtual ~CustomSurfaceConverter() {}
|
| };
|
|
|