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

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: Created 8 years, 8 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..ea5a194b667db5e8868cd303d8932d23d8a2e7e7 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,
+ const base::Time& time,
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,
rjkroege 2012/05/04 15:42:46 i'd split this. To avoid confusing the reviewers.
+ int touch_id,
+ const 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