| Index: mojo/services/public/cpp/geometry/geometry_type_converters.h
|
| diff --git a/mojo/services/public/cpp/geometry/geometry_type_converters.h b/mojo/services/public/cpp/geometry/geometry_type_converters.h
|
| index 80728f9799418b7fcabcfa018860511e3d66eb9a..04dc15833b5b55ed6ca8b1fac4976de1e07df639 100644
|
| --- a/mojo/services/public/cpp/geometry/geometry_type_converters.h
|
| +++ b/mojo/services/public/cpp/geometry/geometry_type_converters.h
|
| @@ -5,7 +5,6 @@
|
| #ifndef MOJO_SERVICES_PUBLIC_CPP_GEOMETRY_GEOMETRY_TYPE_CONVERTERS_H_
|
| #define MOJO_SERVICES_PUBLIC_CPP_GEOMETRY_GEOMETRY_TYPE_CONVERTERS_H_
|
|
|
| -#include "mojo/services/public/cpp/geometry/mojo_geometry_export.h"
|
| #include "mojo/services/public/interfaces/geometry/geometry.mojom.h"
|
| #include "ui/gfx/geometry/point.h"
|
| #include "ui/gfx/geometry/point_f.h"
|
| @@ -16,35 +15,35 @@
|
| namespace mojo {
|
|
|
| template<>
|
| -class MOJO_GEOMETRY_EXPORT TypeConverter<PointPtr, gfx::Point> {
|
| +class TypeConverter<PointPtr, gfx::Point> {
|
| public:
|
| static PointPtr ConvertFrom(const gfx::Point& input);
|
| static gfx::Point ConvertTo(const PointPtr& input);
|
| };
|
|
|
| template <>
|
| -class MOJO_GEOMETRY_EXPORT TypeConverter<PointFPtr, gfx::PointF> {
|
| +class TypeConverter<PointFPtr, gfx::PointF> {
|
| public:
|
| static PointFPtr ConvertFrom(const gfx::PointF& input);
|
| static gfx::PointF ConvertTo(const PointFPtr& input);
|
| };
|
|
|
| template <>
|
| -class MOJO_GEOMETRY_EXPORT TypeConverter<SizePtr, gfx::Size> {
|
| +class TypeConverter<SizePtr, gfx::Size> {
|
| public:
|
| static SizePtr ConvertFrom(const gfx::Size& input);
|
| static gfx::Size ConvertTo(const SizePtr& input);
|
| };
|
|
|
| template<>
|
| -class MOJO_GEOMETRY_EXPORT TypeConverter<RectPtr, gfx::Rect> {
|
| +class TypeConverter<RectPtr, gfx::Rect> {
|
| public:
|
| static RectPtr ConvertFrom(const gfx::Rect& input);
|
| static gfx::Rect ConvertTo(const RectPtr& input);
|
| };
|
|
|
| template <>
|
| -class MOJO_GEOMETRY_EXPORT TypeConverter<TransformPtr, gfx::Transform> {
|
| +class TypeConverter<TransformPtr, gfx::Transform> {
|
| public:
|
| static TransformPtr ConvertFrom(const gfx::Transform& input);
|
| static gfx::Transform ConvertTo(const TransformPtr& input);
|
|
|