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

Unified Diff: ui/aura/root_window.h

Issue 10134045: Getting RenderWidgetHostViewWin ready for a GestureRecognizer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Missed a value parameter - changed to const ref. 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
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.cc ('k') | ui/aura/root_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window.h
diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
index 94ec02f6c46fc6375f52e8770ba2f998f5194646..b0847dc200c2454280704b222cc8470fbc713004 100644
--- a/ui/aura/root_window.h
+++ b/ui/aura/root_window.h
@@ -297,7 +297,7 @@ 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,
sky 2012/05/04 15:36:52 As Time and TimeDelta are primitive types we don't
float param_first,
float param_second,
unsigned int touch_id_bitfield) OVERRIDE;
@@ -305,7 +305,7 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
virtual ui::TouchEvent* CreateTouchEvent(ui::EventType type,
const gfx::Point& location,
int touch_id,
- base::TimeDelta time_stamp) OVERRIDE;
+ const base::TimeDelta& time_stamp) OVERRIDE;
virtual bool DispatchLongPressGestureEvent(ui::GestureEvent* event) OVERRIDE;
virtual bool DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE;
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.cc ('k') | ui/aura/root_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698