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

Unified Diff: ui/aura/root_window.cc

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.cc
diff --git a/ui/aura/root_window.cc b/ui/aura/root_window.cc
index aeb3651bd788d7937dfccff504cd475a57a3de6f..abdccfc56352c0058ef2644fda7e6cff360b427a 100644
--- a/ui/aura/root_window.cc
+++ b/ui/aura/root_window.cc
@@ -826,7 +826,7 @@ bool RootWindow::DispatchCancelTouchEvent(ui::TouchEvent* event) {
ui::GestureEvent* RootWindow::CreateGestureEvent(ui::EventType type,
const gfx::Point& location,
int flags,
- const base::Time time,
+ base::Time time,
float param_first,
float param_second,
unsigned int touch_id_bitfield) {
@@ -834,10 +834,11 @@ ui::GestureEvent* RootWindow::CreateGestureEvent(ui::EventType type,
param_first, param_second, touch_id_bitfield);
}
-ui::TouchEvent* RootWindow::CreateTouchEvent(ui::EventType type,
- const gfx::Point& location,
- int touch_id,
- base::TimeDelta time_stamp) {
+ui::TouchEvent* RootWindow::CreateTouchEvent(
rjkroege 2012/05/09 16:48:15 white space only?
girard 2012/05/09 22:49:19 Done.
+ ui::EventType type,
+ const gfx::Point& location,
+ int touch_id,
+ base::TimeDelta time_stamp) {
return new TouchEvent(type, location, touch_id, time_stamp);
}

Powered by Google App Engine
This is Rietveld 408576698