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

Unified Diff: ui/aura/event.h

Issue 9221014: aura: Gesture event plumbing (skeleton). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 11 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/aura/event.h
diff --git a/ui/aura/event.h b/ui/aura/event.h
index b9e4ecc0630ffd011a9fa4cd2e9df785203c6b71..041d7243ffa70c021efa09427e5551a4b7fb685b 100644
--- a/ui/aura/event.h
+++ b/ui/aura/event.h
@@ -218,7 +218,7 @@ class AURA_EXPORT DropTargetEvent : public LocatedEvent {
class AURA_EXPORT ScrollEvent : public MouseEvent {
public:
- ScrollEvent(const base::NativeEvent& native_event);
+ explicit ScrollEvent(const base::NativeEvent& native_event);
ScrollEvent(const ScrollEvent& model,
Window* source,
Window* target,
@@ -239,6 +239,9 @@ class AURA_EXPORT ScrollEvent : public MouseEvent {
DISALLOW_COPY_AND_ASSIGN(ScrollEvent);
};
+class AURA_EXPORT GestureEvent : public LocatedEvent {
+};
+
} // namespace aura
#endif // UI_AURA_EVENT_H_

Powered by Google App Engine
This is Rietveld 408576698