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

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

Issue 732483003: Remove GestureScrollUpdateWithoutPropagation event (blink) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years 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/web/WebViewImpl.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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 KeyDown, 106 KeyDown,
107 KeyUp, 107 KeyUp,
108 Char, 108 Char,
109 KeyboardTypeLast = Char, 109 KeyboardTypeLast = Char,
110 110
111 // WebGestureEvent 111 // WebGestureEvent
112 GestureScrollBegin, 112 GestureScrollBegin,
113 GestureTypeFirst = GestureScrollBegin, 113 GestureTypeFirst = GestureScrollBegin,
114 GestureScrollEnd, 114 GestureScrollEnd,
115 GestureScrollUpdate, 115 GestureScrollUpdate,
116 GestureScrollUpdateWithoutPropagation,
117 GestureFlingStart, 116 GestureFlingStart,
118 GestureFlingCancel, 117 GestureFlingCancel,
119 GestureShowPress, 118 GestureShowPress,
120 GestureTap, 119 GestureTap,
121 GestureTapUnconfirmed, 120 GestureTapUnconfirmed,
122 GestureTapDown, 121 GestureTapDown,
123 GestureTapCancel, 122 GestureTapCancel,
124 GestureDoubleTap, 123 GestureDoubleTap,
125 GestureTwoFingerTap, 124 GestureTwoFingerTap,
126 GestureLongPress, 125 GestureLongPress,
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 , causesScrollingIfUncanceled(false) 515 , causesScrollingIfUncanceled(false)
517 { 516 {
518 } 517 }
519 }; 518 };
520 519
521 #pragma pack(pop) 520 #pragma pack(pop)
522 521
523 } // namespace blink 522 } // namespace blink
524 523
525 #endif 524 #endif
OLDNEW
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698