| Index: mojo/converters/geometry/geometry_type_converters.h
|
| diff --git a/mojo/converters/geometry/geometry_type_converters.h b/mojo/converters/geometry/geometry_type_converters.h
|
| index 2d906c1e103963561987d3e9ac3563cd1f84581d..cb2a6b811a16c636fc33eb7d5da31613bbf91c5a 100644
|
| --- a/mojo/converters/geometry/geometry_type_converters.h
|
| +++ b/mojo/converters/geometry/geometry_type_converters.h
|
| @@ -59,6 +59,15 @@ struct MOJO_GEOMETRY_EXPORT TypeConverter<gfx::RectF, RectFPtr> {
|
| static gfx::RectF Convert(const RectFPtr& input);
|
| };
|
|
|
| +template <>
|
| +struct MOJO_GEOMETRY_EXPORT TypeConverter<Rect, gfx::Rect> {
|
| + static Rect Convert(const gfx::Rect& input);
|
| +};
|
| +template <>
|
| +struct MOJO_GEOMETRY_EXPORT TypeConverter<gfx::Rect, Rect> {
|
| + static gfx::Rect Convert(const Rect& input);
|
| +};
|
| +
|
| } // namespace mojo
|
|
|
| #endif // MOJO_CONVERTERS_GEOMETRY_GEOMETRY_TYPE_CONVERTERS_H_
|
|
|