Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1270)

Unified Diff: mojo/services/public/cpp/geometry/geometry_type_converters.h

Issue 346613004: Use loadable module instead of shared library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Follow review Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/public/cpp/geometry/mojo_geometry_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/public/cpp/geometry/mojo_geometry_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698