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

Unified Diff: mojo/services/public/cpp/input_events/input_events_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
Index: mojo/services/public/cpp/input_events/input_events_type_converters.h
diff --git a/mojo/services/public/cpp/input_events/input_events_type_converters.h b/mojo/services/public/cpp/input_events/input_events_type_converters.h
index 00a03ac2e77e0efc77d180b302af8c19d11f0a5e..772be23e57178b30572de2deea636a57d27ba63e 100644
--- a/mojo/services/public/cpp/input_events/input_events_type_converters.h
+++ b/mojo/services/public/cpp/input_events/input_events_type_converters.h
@@ -6,27 +6,25 @@
#define MOJO_SERVICES_PUBLIC_CPP_INPUT_EVENTS_INPUT_EVENTS_TYPE_CONVERTERS_H_
#include "base/memory/scoped_ptr.h"
-#include "mojo/services/public/cpp/input_events/mojo_input_events_export.h"
#include "mojo/services/public/interfaces/input_events/input_events.mojom.h"
#include "ui/events/event.h"
namespace mojo {
template<>
-class MOJO_INPUT_EVENTS_EXPORT TypeConverter<EventPtr, ui::Event> {
+class TypeConverter<EventPtr, ui::Event> {
public:
static EventPtr ConvertFrom(const ui::Event& input);
};
template<>
-class MOJO_INPUT_EVENTS_EXPORT TypeConverter<EventPtr, ui::KeyEvent> {
+class TypeConverter<EventPtr, ui::KeyEvent> {
public:
static EventPtr ConvertFrom(const ui::KeyEvent& input);
};
template<>
-class MOJO_INPUT_EVENTS_EXPORT TypeConverter<EventPtr,
- scoped_ptr<ui::Event> > {
+class TypeConverter<EventPtr, scoped_ptr<ui::Event> > {
public:
static scoped_ptr<ui::Event> ConvertTo(const EventPtr& input);
};

Powered by Google App Engine
This is Rietveld 408576698