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

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: Small nits 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
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);

Powered by Google App Engine
This is Rietveld 408576698