| 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/renderer/render_thread_impl.h" | 5 #include "content/renderer/render_thread_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 #include "content/renderer/media/renderer_gpu_video_decoder_factories.h" | 72 #include "content/renderer/media/renderer_gpu_video_decoder_factories.h" |
| 73 #include "content/renderer/media/video_capture_impl_manager.h" | 73 #include "content/renderer/media/video_capture_impl_manager.h" |
| 74 #include "content/renderer/media/video_capture_message_filter.h" | 74 #include "content/renderer/media/video_capture_message_filter.h" |
| 75 #include "content/renderer/memory_benchmarking_extension.h" | 75 #include "content/renderer/memory_benchmarking_extension.h" |
| 76 #include "content/renderer/p2p/socket_dispatcher.h" | 76 #include "content/renderer/p2p/socket_dispatcher.h" |
| 77 #include "content/renderer/plugin_channel_host.h" | 77 #include "content/renderer/plugin_channel_host.h" |
| 78 #include "content/renderer/render_process_impl.h" | 78 #include "content/renderer/render_process_impl.h" |
| 79 #include "content/renderer/render_process_visibility_manager.h" | 79 #include "content/renderer/render_process_visibility_manager.h" |
| 80 #include "content/renderer/render_view_impl.h" | 80 #include "content/renderer/render_view_impl.h" |
| 81 #include "content/renderer/renderer_webkitplatformsupport_impl.h" | 81 #include "content/renderer/renderer_webkitplatformsupport_impl.h" |
| 82 #include "content/renderer/skia_benchmarking_extension.h" | 82 #include "content/renderer/skia_benchmarking/skia_benchmarking_extension.h" |
| 83 #include "grit/content_resources.h" | 83 #include "grit/content_resources.h" |
| 84 #include "ipc/ipc_channel_handle.h" | 84 #include "ipc/ipc_channel_handle.h" |
| 85 #include "ipc/ipc_forwarding_message_filter.h" | 85 #include "ipc/ipc_forwarding_message_filter.h" |
| 86 #include "ipc/ipc_platform_file.h" | 86 #include "ipc/ipc_platform_file.h" |
| 87 #include "media/base/audio_hardware_config.h" | 87 #include "media/base/audio_hardware_config.h" |
| 88 #include "media/base/media.h" | 88 #include "media/base/media.h" |
| 89 #include "net/base/net_errors.h" | 89 #include "net/base/net_errors.h" |
| 90 #include "net/base/net_util.h" | 90 #include "net/base/net_util.h" |
| 91 #include "third_party/WebKit/public/platform/WebString.h" | 91 #include "third_party/WebKit/public/platform/WebString.h" |
| 92 #include "third_party/WebKit/public/web/WebColorName.h" | 92 #include "third_party/WebKit/public/web/WebColorName.h" |
| (...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1302 | 1302 |
| 1303 void RenderThreadImpl::SetFlingCurveParameters( | 1303 void RenderThreadImpl::SetFlingCurveParameters( |
| 1304 const std::vector<float>& new_touchpad, | 1304 const std::vector<float>& new_touchpad, |
| 1305 const std::vector<float>& new_touchscreen) { | 1305 const std::vector<float>& new_touchscreen) { |
| 1306 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, | 1306 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, |
| 1307 new_touchscreen); | 1307 new_touchscreen); |
| 1308 | 1308 |
| 1309 } | 1309 } |
| 1310 | 1310 |
| 1311 } // namespace content | 1311 } // namespace content |
| OLD | NEW |