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

Side by Side Diff: content/browser/renderer_host/input/gesture_event_packet.h

Issue 128613003: [Tracking Patch] Unified gesture detection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address tdresser@ comments and run clang-format on everything Created 6 years, 10 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "third_party/WebKit/public/web/WebInputEvent.h" 9 #include "third_party/WebKit/public/web/WebInputEvent.h"
10 10
11 namespace ui {
12 class MotionEvent;
13 }
14
11 namespace content { 15 namespace content {
12 16
13 // Acts as a transport container for gestures created (directly or indirectly) 17 // Acts as a transport container for gestures created (directly or indirectly)
14 // by a touch event. 18 // by a touch event.
15 class CONTENT_EXPORT GestureEventPacket { 19 class CONTENT_EXPORT GestureEventPacket {
16 public: 20 public:
17 enum GestureSource { 21 enum GestureSource {
18 UNDEFINED = -1, // Used only for a default-constructed packet. 22 UNDEFINED = -1, // Used only for a default-constructed packet.
19 INVALID, // The source of the gesture was invalid. 23 INVALID, // The source of the gesture was invalid.
20 TOUCH_SEQUENCE_BEGIN, // The start of a new gesture sequence. 24 TOUCH_SEQUENCE_BEGIN, // The start of a new gesture sequence.
(...skipping 23 matching lines...) Expand all
44 48
45 enum { kMaxGesturesPerTouch = 5 }; 49 enum { kMaxGesturesPerTouch = 5 };
46 blink::WebGestureEvent gestures_[kMaxGesturesPerTouch]; 50 blink::WebGestureEvent gestures_[kMaxGesturesPerTouch];
47 size_t gesture_count_; 51 size_t gesture_count_;
48 GestureSource gesture_source_; 52 GestureSource gesture_source_;
49 }; 53 };
50 54
51 } // namespace content 55 } // namespace content
52 56
53 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_ 57 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_GESTURE_EVENT_PACKET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698