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

Unified Diff: ui/events/ozone/event_factory_delegate_ozone.h

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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: 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;

Powered by Google App Engine
This is Rietveld 408576698