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

Side by Side Diff: blimp/net/input_message_generator.cc

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 | « no previous file | components/test_runner/event_sender.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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "blimp/net/input_message_generator.h" 5 #include "blimp/net/input_message_generator.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "blimp/common/create_blimp_message.h" 8 #include "blimp/common/create_blimp_message.h"
9 #include "blimp/common/proto/blimp_message.pb.h" 9 #include "blimp/common/proto/blimp_message.pb.h"
10 #include "blimp/common/proto/input.pb.h" 10 #include "blimp/common/proto/input.pb.h"
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 case blink::WebInputEvent::Type::GestureTapDown: 163 case blink::WebInputEvent::Type::GestureTapDown:
164 case blink::WebInputEvent::Type::GestureTapCancel: 164 case blink::WebInputEvent::Type::GestureTapCancel:
165 case blink::WebInputEvent::Type::GestureDoubleTap: 165 case blink::WebInputEvent::Type::GestureDoubleTap:
166 case blink::WebInputEvent::Type::GestureTwoFingerTap: 166 case blink::WebInputEvent::Type::GestureTwoFingerTap:
167 case blink::WebInputEvent::Type::GestureLongPress: 167 case blink::WebInputEvent::Type::GestureLongPress:
168 case blink::WebInputEvent::Type::GestureLongTap: 168 case blink::WebInputEvent::Type::GestureLongTap:
169 case blink::WebInputEvent::Type::TouchStart: 169 case blink::WebInputEvent::Type::TouchStart:
170 case blink::WebInputEvent::Type::TouchMove: 170 case blink::WebInputEvent::Type::TouchMove:
171 case blink::WebInputEvent::Type::TouchEnd: 171 case blink::WebInputEvent::Type::TouchEnd:
172 case blink::WebInputEvent::Type::TouchCancel: 172 case blink::WebInputEvent::Type::TouchCancel:
173 case blink::WebInputEvent::Type::TouchScrollStarted:
173 NOTIMPLEMENTED(); 174 NOTIMPLEMENTED();
174 return nullptr; 175 return nullptr;
175 } 176 }
176 177
177 return message; 178 return message;
178 } 179 }
179 180
180 } // namespace blimp 181 } // namespace blimp
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/event_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698