| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |