| 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 "content/renderer/input/render_widget_input_handler.h" | 5 #include "content/renderer/input/render_widget_input_handler.h" | 
| 6 | 6 | 
| 7 #include <stddef.h> | 7 #include <stddef.h> | 
| 8 #include <stdint.h> | 8 #include <stdint.h> | 
| 9 #include <utility> | 9 #include <utility> | 
| 10 | 10 | 
| 11 #include "base/auto_reset.h" | 11 #include "base/auto_reset.h" | 
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" | 
| 13 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" | 
| 14 #include "base/trace_event/trace_event_synthetic_delay.h" | 14 #include "base/trace_event/trace_event_synthetic_delay.h" | 
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" | 
| 16 #include "cc/trees/swap_promise_monitor.h" | 16 #include "cc/trees/swap_promise_monitor.h" | 
| 17 #include "components/scheduler/renderer/renderer_scheduler.h" |  | 
| 18 #include "content/common/input/input_event_ack.h" | 17 #include "content/common/input/input_event_ack.h" | 
| 19 #include "content/common/input/input_event_ack_state.h" | 18 #include "content/common/input/input_event_ack_state.h" | 
| 20 #include "content/common/input/web_input_event_traits.h" | 19 #include "content/common/input/web_input_event_traits.h" | 
| 21 #include "content/public/common/content_switches.h" | 20 #include "content/public/common/content_switches.h" | 
| 22 #include "content/renderer/gpu/render_widget_compositor.h" | 21 #include "content/renderer/gpu/render_widget_compositor.h" | 
| 23 #include "content/renderer/ime_event_guard.h" | 22 #include "content/renderer/ime_event_guard.h" | 
| 24 #include "content/renderer/input/render_widget_input_handler_delegate.h" | 23 #include "content/renderer/input/render_widget_input_handler_delegate.h" | 
| 25 #include "content/renderer/render_thread_impl.h" | 24 #include "content/renderer/render_thread_impl.h" | 
| 26 #include "content/renderer/render_widget.h" | 25 #include "content/renderer/render_widget.h" | 
| 27 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 26 #include "third_party/WebKit/public/platform/WebFloatPoint.h" | 
| 28 #include "third_party/WebKit/public/platform/WebFloatSize.h" | 27 #include "third_party/WebKit/public/platform/WebFloatSize.h" | 
|  | 28 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
     er.h" | 
| 29 #include "ui/events/latency_info.h" | 29 #include "ui/events/latency_info.h" | 
| 30 #include "ui/gfx/geometry/point_conversions.h" | 30 #include "ui/gfx/geometry/point_conversions.h" | 
| 31 | 31 | 
| 32 #if defined(OS_ANDROID) | 32 #if defined(OS_ANDROID) | 
| 33 #include <android/keycodes.h> | 33 #include <android/keycodes.h> | 
| 34 #endif | 34 #endif | 
| 35 | 35 | 
| 36 using blink::WebFloatPoint; | 36 using blink::WebFloatPoint; | 
| 37 using blink::WebFloatSize; | 37 using blink::WebFloatSize; | 
| 38 using blink::WebGestureEvent; | 38 using blink::WebGestureEvent; | 
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 555   if (pending_input_event_ack_) { | 555   if (pending_input_event_ack_) { | 
| 556     TRACE_EVENT_ASYNC_END0("input", | 556     TRACE_EVENT_ASYNC_END0("input", | 
| 557                            "RenderWidgetInputHandler::ThrottledInputEventAck", | 557                            "RenderWidgetInputHandler::ThrottledInputEventAck", | 
| 558                            pending_input_event_ack_.get()); | 558                            pending_input_event_ack_.get()); | 
| 559     delegate_->OnInputEventAck(std::move(pending_input_event_ack_)); | 559     delegate_->OnInputEventAck(std::move(pending_input_event_ack_)); | 
| 560   } | 560   } | 
| 561   total_input_handling_time_this_frame_ = base::TimeDelta(); | 561   total_input_handling_time_this_frame_ = base::TimeDelta(); | 
| 562 } | 562 } | 
| 563 | 563 | 
| 564 }  // namespace content | 564 }  // namespace content | 
| OLD | NEW | 
|---|