| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/browser/renderer_host/render_widget_host_view_android.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_android.h" |
| 6 | 6 |
| 7 #include <android/bitmap.h> | 7 #include <android/bitmap.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" | 45 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" |
| 46 #include "content/browser/gpu/compositor_util.h" | 46 #include "content/browser/gpu/compositor_util.h" |
| 47 #include "content/browser/gpu/gpu_data_manager_impl.h" | 47 #include "content/browser/gpu/gpu_data_manager_impl.h" |
| 48 #include "content/browser/gpu/gpu_process_host_ui_shim.h" | 48 #include "content/browser/gpu/gpu_process_host_ui_shim.h" |
| 49 #include "content/browser/media/android/media_web_contents_observer_android.h" | 49 #include "content/browser/media/android/media_web_contents_observer_android.h" |
| 50 #include "content/browser/renderer_host/compositor_impl_android.h" | 50 #include "content/browser/renderer_host/compositor_impl_android.h" |
| 51 #include "content/browser/renderer_host/dip_util.h" | 51 #include "content/browser/renderer_host/dip_util.h" |
| 52 #include "content/browser/renderer_host/frame_metadata_util.h" | 52 #include "content/browser/renderer_host/frame_metadata_util.h" |
| 53 #include "content/browser/renderer_host/input/synthetic_gesture_target_android.h
" | 53 #include "content/browser/renderer_host/input/synthetic_gesture_target_android.h
" |
| 54 #include "content/browser/renderer_host/input/web_input_event_builders_android.h
" | 54 #include "content/browser/renderer_host/input/web_input_event_builders_android.h
" |
| 55 #include "content/browser/renderer_host/input/web_input_event_util.h" | |
| 56 #include "content/browser/renderer_host/render_process_host_impl.h" | 55 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 57 #include "content/browser/renderer_host/render_view_host_impl.h" | 56 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 58 #include "content/browser/renderer_host/render_widget_host_impl.h" | 57 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 59 #include "content/common/gpu_host_messages.h" | 58 #include "content/common/gpu_host_messages.h" |
| 60 #include "content/common/input/did_overscroll_params.h" | 59 #include "content/common/input/did_overscroll_params.h" |
| 61 #include "content/common/input_messages.h" | 60 #include "content/common/input_messages.h" |
| 62 #include "content/common/view_messages.h" | 61 #include "content/common/view_messages.h" |
| 63 #include "content/public/browser/android/compositor.h" | 62 #include "content/public/browser/android/compositor.h" |
| 64 #include "content/public/browser/browser_thread.h" | 63 #include "content/public/browser/browser_thread.h" |
| 65 #include "content/public/browser/devtools_agent_host.h" | 64 #include "content/public/browser/devtools_agent_host.h" |
| (...skipping 1927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1993 case ui::MotionEvent::ACTION_UP: | 1992 case ui::MotionEvent::ACTION_UP: |
| 1994 case ui::MotionEvent::ACTION_POINTER_UP: | 1993 case ui::MotionEvent::ACTION_POINTER_UP: |
| 1995 UMA_HISTOGRAM_CUSTOM_COUNTS("Event.Latency.OS.TOUCH_RELEASED", | 1994 UMA_HISTOGRAM_CUSTOM_COUNTS("Event.Latency.OS.TOUCH_RELEASED", |
| 1996 delta.InMicroseconds(), 1, 1000000, 50); | 1995 delta.InMicroseconds(), 1, 1000000, 50); |
| 1997 default: | 1996 default: |
| 1998 return; | 1997 return; |
| 1999 } | 1998 } |
| 2000 } | 1999 } |
| 2001 | 2000 |
| 2002 } // namespace content | 2001 } // namespace content |
| OLD | NEW |