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); |
} |