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

Unified Diff: webkit/glue/webinputevent.h

Issue 40135: Various fixes to mouse wheel scrolling:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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: webkit/glue/webinputevent.h
===================================================================
--- webkit/glue/webinputevent.h (revision 10933)
+++ webkit/glue/webinputevent.h (working copy)
@@ -131,8 +131,9 @@
class WebMouseWheelEvent : public WebMouseEvent {
public:
- int delta_x;
- int delta_y;
+ float delta_x;
+ float delta_y;
+ bool scroll_by_page;
WebMouseWheelEvent() {}
#if defined(OS_WIN)

Powered by Google App Engine
This is Rietveld 408576698