| 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);
|
| };
|
|
|