| Index: mojo/converters/surfaces/surfaces_type_converters.h
|
| diff --git a/mojo/converters/surfaces/surfaces_type_converters.h b/mojo/converters/surfaces/surfaces_type_converters.h
|
| index e05581dedefe4492a049126e0833774cf1f1b9a2..b1f33b5dcb4789372edd2ef3d1e5dc1ce00cbccb 100644
|
| --- a/mojo/converters/surfaces/surfaces_type_converters.h
|
| +++ b/mojo/converters/surfaces/surfaces_type_converters.h
|
| @@ -142,14 +142,16 @@ TypeConverter<Array<ReturnedResourcePtr>, cc::ReturnedResourceArray> {
|
| };
|
|
|
| template <>
|
| -struct MOJO_SURFACES_EXPORT TypeConverter<FramePtr, cc::CompositorFrame> {
|
| - static FramePtr Convert(const cc::CompositorFrame& input);
|
| +struct MOJO_SURFACES_EXPORT
|
| +TypeConverter<CompositorFramePtr, cc::CompositorFrame> {
|
| + static CompositorFramePtr Convert(const cc::CompositorFrame& input);
|
| };
|
|
|
| template <>
|
| struct MOJO_SURFACES_EXPORT
|
| -TypeConverter<scoped_ptr<cc::CompositorFrame>, FramePtr> {
|
| - static scoped_ptr<cc::CompositorFrame> Convert(const FramePtr& input);
|
| +TypeConverter<scoped_ptr<cc::CompositorFrame>, CompositorFramePtr> {
|
| + static scoped_ptr<cc::CompositorFrame> Convert(
|
| + const CompositorFramePtr& input);
|
| };
|
|
|
| } // namespace mojo
|
|
|