Chromium Code Reviews| Index: ui/events/ozone/event_factory_delegate_ozone.h |
| diff --git a/ui/events/ozone/event_factory_delegate_ozone.h b/ui/events/ozone/event_factory_delegate_ozone.h |
| index 0671f2f85687b2ef7ed96e04060e407099d0b9dc..9355d123154c4850a67685acd3cfcfa44708c498 100644 |
| --- a/ui/events/ozone/event_factory_delegate_ozone.h |
| +++ b/ui/events/ozone/event_factory_delegate_ozone.h |
| @@ -5,6 +5,9 @@ |
| #ifndef UI_EVENTS_OZONE_EVENT_FACTORY_DELEGATE_OZONE_H_ |
| #define UI_EVENTS_OZONE_EVENT_FACTORY_DELEGATE_OZONE_H_ |
| +#include "base/basictypes.h" |
| +#include "ui/events/events_export.h" |
| + |
| namespace ui { |
| class Event; |
| class EventFactoryOzone; |
| @@ -14,8 +17,8 @@ class EventFactoryOzone; |
| // the |RootWindowHostOzone| object. |
| class EVENTS_EXPORT EventFactoryDelegateOzone { |
| public: |
| - EventFactoryDelegateOzone(); |
| - virtual ~EventFactoryDelegateOzone(); |
| + EventFactoryDelegateOzone() {} |
| + virtual ~EventFactoryDelegateOzone() {} |
|
rjkroege
2013/10/18 18:57:55
clang on at least some platforms requires virtual
spang
2013/10/21 18:46:12
Will create event_factory_delegate_ozone.cc
|
| // Override this method with embedder-appropriate converter creation. |
| virtual void CreateStartupEventConverters(EventFactoryOzone* factory) = 0; |