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

Unified Diff: ui/aura/root_window.h

Issue 10365009: Adding Gesture Recognition to RenderWidgetHostViewWin (web client) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Removed views dependency. Created 8 years, 7 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/root_window.h
diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
index 94ec02f6c46fc6375f52e8770ba2f998f5194646..89f567ff258e5af4772bb31c9142c8ab3158782a 100644
--- a/ui/aura/root_window.h
+++ b/ui/aura/root_window.h
@@ -297,15 +297,15 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
virtual ui::GestureEvent* CreateGestureEvent(ui::EventType type,
const gfx::Point& location,
int flags,
- const base::Time time,
+ base::Time time,
rjkroege 2012/05/09 16:48:15 revert this change? it is white space only
girard 2012/05/09 22:49:19 Fist change removed a (useless) const from the fun
float param_first,
float param_second,
unsigned int touch_id_bitfield) OVERRIDE;
virtual ui::TouchEvent* CreateTouchEvent(ui::EventType type,
- const gfx::Point& location,
- int touch_id,
- base::TimeDelta time_stamp) OVERRIDE;
+ const gfx::Point& location,
+ int touch_id,
+ base::TimeDelta time_stamp) OVERRIDE;
virtual bool DispatchLongPressGestureEvent(ui::GestureEvent* event) OVERRIDE;
virtual bool DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698