| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ | 5 #ifndef CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ |
| 6 #define CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ | 6 #define CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "third_party/WebKit/public/platform/WebCoalescedInputEvent.h" | 11 #include "third_party/WebKit/public/platform/WebCoalescedInputEvent.h" |
| 12 #include "third_party/WebKit/public/platform/WebGestureEvent.h" | 12 #include "third_party/WebKit/public/platform/WebGestureEvent.h" |
| 13 #include "third_party/WebKit/public/platform/WebMouseWheelEvent.h" | 13 #include "third_party/WebKit/public/platform/WebMouseWheelEvent.h" |
| 14 #include "third_party/WebKit/public/platform/WebTouchEvent.h" |
| 14 #include "ui/events/blink/blink_event_util.h" | 15 #include "ui/events/blink/blink_event_util.h" |
| 15 #include "ui/events/latency_info.h" | 16 #include "ui/events/latency_info.h" |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 | 19 |
| 19 class ScopedWebInputEventWithLatencyInfo { | 20 class ScopedWebInputEventWithLatencyInfo { |
| 20 public: | 21 public: |
| 21 ScopedWebInputEventWithLatencyInfo(blink::WebScopedInputEvent, | 22 ScopedWebInputEventWithLatencyInfo(blink::WebScopedInputEvent, |
| 22 const ui::LatencyInfo&); | 23 const ui::LatencyInfo&); |
| 23 | 24 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 typedef EventWithLatencyInfo<blink::WebMouseWheelEvent> | 92 typedef EventWithLatencyInfo<blink::WebMouseWheelEvent> |
| 92 MouseWheelEventWithLatencyInfo; | 93 MouseWheelEventWithLatencyInfo; |
| 93 typedef EventWithLatencyInfo<blink::WebMouseEvent> | 94 typedef EventWithLatencyInfo<blink::WebMouseEvent> |
| 94 MouseEventWithLatencyInfo; | 95 MouseEventWithLatencyInfo; |
| 95 typedef EventWithLatencyInfo<blink::WebTouchEvent> | 96 typedef EventWithLatencyInfo<blink::WebTouchEvent> |
| 96 TouchEventWithLatencyInfo; | 97 TouchEventWithLatencyInfo; |
| 97 | 98 |
| 98 } // namespace content | 99 } // namespace content |
| 99 | 100 |
| 100 #endif // CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ | 101 #endif // CONTENT_COMMON_INPUT_EVENT_WITH_LATENCY_INFO_H_ |
| OLD | NEW |