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

Unified Diff: ash/wm/window_cycle_controller.cc

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/user_activity_detector_unittest.cc ('k') | ash/wm/window_modality_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_cycle_controller.cc
diff --git a/ash/wm/window_cycle_controller.cc b/ash/wm/window_cycle_controller.cc
index 31fea4e506166dec65f8deacafc5f15134bd950a..3223018ce4e0408125f8d62f84d448841011ed49 100644
--- a/ash/wm/window_cycle_controller.cc
+++ b/ash/wm/window_cycle_controller.cc
@@ -42,7 +42,7 @@ class WindowCycleEventFilter : public aura::EventFilter {
ui::TouchEvent* event) OVERRIDE;
virtual ui::GestureStatus PreHandleGestureEvent(
aura::Window* target,
- ui::GestureEventImpl* event) OVERRIDE;
+ ui::GestureEvent* event) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(WindowCycleEventFilter);
};
@@ -80,7 +80,7 @@ ui::TouchStatus WindowCycleEventFilter::PreHandleTouchEvent(
ui::GestureStatus WindowCycleEventFilter::PreHandleGestureEvent(
aura::Window* target,
- ui::GestureEventImpl* event) {
+ ui::GestureEvent* event) {
return ui::GESTURE_STATUS_UNKNOWN; // Not handled.
}
« no previous file with comments | « ash/wm/user_activity_detector_unittest.cc ('k') | ash/wm/window_modality_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698