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

Side by Side Diff: third_party/WebKit/public/web/WebInputEvent.h

Issue 1800143002: Notify Blink about start of gesture scroll through a queued event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/WebInputEventConversion.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 GesturePinchEnd, 132 GesturePinchEnd,
133 GesturePinchUpdate, 133 GesturePinchUpdate,
134 GestureTypeLast = GesturePinchUpdate, 134 GestureTypeLast = GesturePinchUpdate,
135 135
136 // WebTouchEvent 136 // WebTouchEvent
137 TouchStart, 137 TouchStart,
138 TouchTypeFirst = TouchStart, 138 TouchTypeFirst = TouchStart,
139 TouchMove, 139 TouchMove,
140 TouchEnd, 140 TouchEnd,
141 TouchCancel, 141 TouchCancel,
142 TouchTypeLast = TouchCancel, 142 TouchScrollStarted,
143 TouchTypeLast = TouchScrollStarted,
143 144
144 TypeLast = TouchTypeLast 145 TypeLast = TouchTypeLast
145 }; 146 };
146 147
147 // The modifier constants cannot change their values since pepper 148 // The modifier constants cannot change their values since pepper
148 // does a 1-1 mapping of its values; see 149 // does a 1-1 mapping of its values; see
149 // content/renderer/pepper/event_conversion.cc 150 // content/renderer/pepper/event_conversion.cc
150 // 151 //
151 // A Java counterpart will be generated for this enum. 152 // A Java counterpart will be generated for this enum.
152 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.blink_public.web 153 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.blink_public.web
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 , uniqueTouchEventId(0) 623 , uniqueTouchEventId(0)
623 { 624 {
624 } 625 }
625 }; 626 };
626 627
627 #pragma pack(pop) 628 #pragma pack(pop)
628 629
629 } // namespace blink 630 } // namespace blink
630 631
631 #endif 632 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebInputEventConversion.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698