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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 #include "content/renderer/skia_benchmarking_extension.h" | 75 #include "content/renderer/skia_benchmarking_extension.h" |
76 #include "grit/content_resources.h" | 76 #include "grit/content_resources.h" |
77 #include "ipc/ipc_channel_handle.h" | 77 #include "ipc/ipc_channel_handle.h" |
78 #include "ipc/ipc_forwarding_message_filter.h" | 78 #include "ipc/ipc_forwarding_message_filter.h" |
79 #include "ipc/ipc_platform_file.h" | 79 #include "ipc/ipc_platform_file.h" |
80 #include "media/base/audio_hardware_config.h" | 80 #include "media/base/audio_hardware_config.h" |
81 #include "media/base/media.h" | 81 #include "media/base/media.h" |
82 #include "media/base/media_switches.h" | 82 #include "media/base/media_switches.h" |
83 #include "net/base/net_errors.h" | 83 #include "net/base/net_errors.h" |
84 #include "net/base/net_util.h" | 84 #include "net/base/net_util.h" |
85 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" | 85 #include "third_party/WebKit/public/platform/WebString.h" |
86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" | 86 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h" |
87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" | 87 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDatabase.h" |
88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 88 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 89 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 90 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi
er.h" | 91 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi
er.h" |
92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" | 92 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" |
93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" | 93 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRuntimeFeatures.h" |
94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" | 94 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptController.h
" |
95 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" | 95 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" |
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 | 1328 |
1329 void RenderThreadImpl::SetFlingCurveParameters( | 1329 void RenderThreadImpl::SetFlingCurveParameters( |
1330 const std::vector<float>& new_touchpad, | 1330 const std::vector<float>& new_touchpad, |
1331 const std::vector<float>& new_touchscreen) { | 1331 const std::vector<float>& new_touchscreen) { |
1332 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, | 1332 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, |
1333 new_touchscreen); | 1333 new_touchscreen); |
1334 | 1334 |
1335 } | 1335 } |
1336 | 1336 |
1337 } // namespace content | 1337 } // namespace content |
OLD | NEW |