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

Unified Diff: ash/wm/system_gesture_event_filter.h

Issue 10824247: Remove GestureEvent interface, and rename GestureEventImpl to GestureEvent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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
« no previous file with comments | « ash/wm/shelf_layout_manager.cc ('k') | ash/wm/system_gesture_event_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/system_gesture_event_filter.h
diff --git a/ash/wm/system_gesture_event_filter.h b/ash/wm/system_gesture_event_filter.h
index 9585481fb798dfee04917e253144767996f6749d..a035070a8612f0db3e6a6bcaa4dc1645157cfba4 100644
--- a/ash/wm/system_gesture_event_filter.h
+++ b/ash/wm/system_gesture_event_filter.h
@@ -101,7 +101,7 @@ class SystemGestureEventFilter : public aura::EventFilter,
ui::TouchEvent* event) OVERRIDE;
virtual ui::GestureStatus PreHandleGestureEvent(
aura::Window* target,
- ui::GestureEventImpl* event) OVERRIDE;
+ ui::GestureEvent* event) OVERRIDE;
// Overridden from aura::WindowObserver.
virtual void OnWindowVisibilityChanged(aura::Window* window,
@@ -116,15 +116,15 @@ class SystemGestureEventFilter : public aura::EventFilter,
// Handle events meant for volume / brightness. Returns true when no further
// events from this gesture should be sent.
- bool HandleDeviceControl(aura::Window* target, ui::GestureEventImpl* event);
+ bool HandleDeviceControl(aura::Window* target, ui::GestureEvent* event);
// Handle events meant for showing the launcher. Returns true when no further
// events from this gesture should be sent.
- bool HandleLauncherControl(ui::GestureEventImpl* event);
+ bool HandleLauncherControl(ui::GestureEvent* event);
// Handle events meant to switch through applications. Returns true when no
// further events from this gesture should be sent.
- bool HandleApplicationControl(ui::GestureEventImpl* event);
+ bool HandleApplicationControl(ui::GestureEvent* event);
typedef std::map<aura::Window*, SystemPinchHandler*> WindowPinchHandlerMap;
// Created on demand when a system-level pinch gesture is initiated. Destroyed
« no previous file with comments | « ash/wm/shelf_layout_manager.cc ('k') | ash/wm/system_gesture_event_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698