| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 #include "content/renderer/skia_benchmarking_extension.h" | 74 #include "content/renderer/skia_benchmarking_extension.h" |
| 75 #include "grit/content_resources.h" | 75 #include "grit/content_resources.h" |
| 76 #include "ipc/ipc_channel_handle.h" | 76 #include "ipc/ipc_channel_handle.h" |
| 77 #include "ipc/ipc_forwarding_message_filter.h" | 77 #include "ipc/ipc_forwarding_message_filter.h" |
| 78 #include "ipc/ipc_platform_file.h" | 78 #include "ipc/ipc_platform_file.h" |
| 79 #include "media/base/audio_hardware_config.h" | 79 #include "media/base/audio_hardware_config.h" |
| 80 #include "media/base/media.h" | 80 #include "media/base/media.h" |
| 81 #include "media/base/media_switches.h" | 81 #include "media/base/media_switches.h" |
| 82 #include "net/base/net_errors.h" | 82 #include "net/base/net_errors.h" |
| 83 #include "net/base/net_util.h" | 83 #include "net/base/net_util.h" |
| 84 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 84 #include "third_party/WebKit/public/platform/WebString.h" |
| 85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" | 85 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" |
| 86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" | 86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" |
| 87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
| 88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
| 89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
| 90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi
er.h" | 90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi
er.h" |
| 91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" | 91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" |
| 92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" | 92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" |
| 93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" | 93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" |
| 94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" | 94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" |
| (...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 | 1317 |
| 1318 void RenderThreadImpl::SetFlingCurveParameters( | 1318 void RenderThreadImpl::SetFlingCurveParameters( |
| 1319 const std::vector<float>& new_touchpad, | 1319 const std::vector<float>& new_touchpad, |
| 1320 const std::vector<float>& new_touchscreen) { | 1320 const std::vector<float>& new_touchscreen) { |
| 1321 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, | 1321 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, |
| 1322 new_touchscreen); | 1322 new_touchscreen); |
| 1323 | 1323 |
| 1324 } | 1324 } |
| 1325 | 1325 |
| 1326 } // namespace content | 1326 } // namespace content |
| OLD | NEW |