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> |
11 | 11 |
12 #include "base/allocator/allocator_extension.h" | 12 #include "base/allocator/allocator_extension.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/debug/trace_event.h" | 14 #include "base/debug/trace_event.h" |
15 #include "base/lazy_instance.h" | 15 #include "base/lazy_instance.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/metrics/field_trial.h" | 17 #include "base/metrics/field_trial.h" |
18 #include "base/metrics/histogram.h" | 18 #include "base/metrics/histogram.h" |
19 #include "base/metrics/stats_table.h" | 19 #include "base/metrics/stats_table.h" |
20 #include "base/path_service.h" | 20 #include "base/path_service.h" |
21 #include "base/shared_memory.h" | 21 #include "base/shared_memory.h" |
22 #include "base/string16.h" | 22 #include "base/string16.h" |
23 #include "base/string_number_conversions.h" // Temporary | 23 #include "base/string_number_conversions.h" // Temporary |
| 24 #include "base/strings/utf_string_conversions.h" |
24 #include "base/threading/thread_local.h" | 25 #include "base/threading/thread_local.h" |
25 #include "base/threading/thread_restrictions.h" | 26 #include "base/threading/thread_restrictions.h" |
26 #include "base/utf_string_conversions.h" | |
27 #include "base/values.h" | 27 #include "base/values.h" |
28 #include "content/child/child_histogram_message_filter.h" | 28 #include "content/child/child_histogram_message_filter.h" |
29 #include "content/child/indexed_db/indexed_db_dispatcher.h" | 29 #include "content/child/indexed_db/indexed_db_dispatcher.h" |
30 #include "content/child/indexed_db/indexed_db_message_filter.h" | 30 #include "content/child/indexed_db/indexed_db_message_filter.h" |
31 #include "content/child/npobject_util.h" | 31 #include "content/child/npobject_util.h" |
32 #include "content/child/plugin_messages.h" | 32 #include "content/child/plugin_messages.h" |
33 #include "content/child/resource_dispatcher.h" | 33 #include "content/child/resource_dispatcher.h" |
34 #include "content/child/web_database_observer_impl.h" | 34 #include "content/child/web_database_observer_impl.h" |
35 #include "content/common/appcache/appcache_dispatcher.h" | 35 #include "content/common/appcache/appcache_dispatcher.h" |
36 #include "content/common/child_process_messages.h" | 36 #include "content/common/child_process_messages.h" |
(...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1349 | 1349 |
1350 void RenderThreadImpl::SetFlingCurveParameters( | 1350 void RenderThreadImpl::SetFlingCurveParameters( |
1351 const std::vector<float>& new_touchpad, | 1351 const std::vector<float>& new_touchpad, |
1352 const std::vector<float>& new_touchscreen) { | 1352 const std::vector<float>& new_touchscreen) { |
1353 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, | 1353 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, |
1354 new_touchscreen); | 1354 new_touchscreen); |
1355 | 1355 |
1356 } | 1356 } |
1357 | 1357 |
1358 } // namespace content | 1358 } // namespace content |
OLD | NEW |