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 3c09f6707be6ea75f424fab450ffd6a80f945866..27b7e1ed19ba924bd8e5679679b577dd66281728 100644 |
--- a/mojo/services/public/cpp/geometry/geometry_type_converters.h |
+++ b/mojo/services/public/cpp/geometry/geometry_type_converters.h |
@@ -5,28 +5,27 @@ |
#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/rect.h" |
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<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); |