| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ | 5 #ifndef UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ |
| 6 #define UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ | 6 #define UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "ui/events/blink/input_handler_proxy.h" | 10 #include "ui/events/blink/input_handler_proxy.h" |
| 11 #include "ui/events/latency_info.h" | 11 #include "ui/latency/latency_info.h" |
| 12 | 12 |
| 13 namespace ui { | 13 namespace ui { |
| 14 | 14 |
| 15 namespace test { | 15 namespace test { |
| 16 class InputHandlerProxyEventQueueTest; | 16 class InputHandlerProxyEventQueueTest; |
| 17 } | 17 } |
| 18 | 18 |
| 19 class EventWithCallback { | 19 class EventWithCallback { |
| 20 public: | 20 public: |
| 21 struct OriginalEventWithCallback { | 21 struct OriginalEventWithCallback { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 LatencyInfo latency_; | 70 LatencyInfo latency_; |
| 71 OriginalEventList original_events_; | 71 OriginalEventList original_events_; |
| 72 | 72 |
| 73 base::TimeTicks creation_timestamp_; | 73 base::TimeTicks creation_timestamp_; |
| 74 base::TimeTicks last_coalesced_timestamp_; | 74 base::TimeTicks last_coalesced_timestamp_; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace ui | 77 } // namespace ui |
| 78 | 78 |
| 79 #endif // UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ | 79 #endif // UI_EVENTS_BLINK_EVENT_WITH_CALLBACK_H_ |
| OLD | NEW |