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

Side by Side Diff: Source/platform/PlatformWheelEvent.h

Issue 524773004: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « Source/platform/LifecycleNotifier.h ('k') | Source/platform/PopupMenu.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef PlatformWheelEvent_h 26 #ifndef PlatformWheelEvent_h
27 #define PlatformWheelEvent_h 27 #define PlatformWheelEvent_h
28 28
29 #include "platform/PlatformEvent.h" 29 #include "platform/PlatformEvent.h"
30 #include "platform/geometry/IntPoint.h" 30 #include "platform/geometry/IntPoint.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 class FloatPoint;
35 class FloatSize;
36
37 // Wheel events come in two flavors: 34 // Wheel events come in two flavors:
38 // The ScrollByPixelWheelEvent is a fine-grained event that specifies the precis e number of pixels to scroll. It is sent directly by MacBook touchpads on OS X, 35 // The ScrollByPixelWheelEvent is a fine-grained event that specifies the precis e number of pixels to scroll. It is sent directly by MacBook touchpads on OS X,
39 // and synthesized in other cases where platforms generate line-by-line scrollin g events. 36 // and synthesized in other cases where platforms generate line-by-line scrollin g events.
40 // The ScrollByPageWheelEvent indicates that the wheel event should scroll an en tire page. In this case WebCore's built in paging behavior is used to page 37 // The ScrollByPageWheelEvent indicates that the wheel event should scroll an en tire page. In this case WebCore's built in paging behavior is used to page
41 // up and down (you get the same behavior as if the user was clicking in a scrol lbar track to page up or page down). 38 // up and down (you get the same behavior as if the user was clicking in a scrol lbar track to page up or page down).
42 enum PlatformWheelEventGranularity { 39 enum PlatformWheelEventGranularity {
43 ScrollByPageWheelEvent, 40 ScrollByPageWheelEvent,
44 ScrollByPixelWheelEvent, 41 ScrollByPixelWheelEvent,
45 }; 42 };
46 43
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 float m_unacceleratedScrollingDeltaX; 139 float m_unacceleratedScrollingDeltaX;
143 float m_unacceleratedScrollingDeltaY; 140 float m_unacceleratedScrollingDeltaY;
144 bool m_canRubberbandLeft; 141 bool m_canRubberbandLeft;
145 bool m_canRubberbandRight; 142 bool m_canRubberbandRight;
146 #endif 143 #endif
147 }; 144 };
148 145
149 } // namespace blink 146 } // namespace blink
150 147
151 #endif // PlatformWheelEvent_h 148 #endif // PlatformWheelEvent_h
OLDNEW
« no previous file with comments | « Source/platform/LifecycleNotifier.h ('k') | Source/platform/PopupMenu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698