Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(811)

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 16756003: Use a direct include of strings headers in content/renderer and content/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/strings/string16.h"
23 #include "base/string_number_conversions.h" // Temporary 23 #include "base/strings/string_number_conversions.h" // Temporary
24 #include "base/strings/utf_string_conversions.h" 24 #include "base/strings/utf_string_conversions.h"
25 #include "base/threading/thread_local.h" 25 #include "base/threading/thread_local.h"
26 #include "base/threading/thread_restrictions.h" 26 #include "base/threading/thread_restrictions.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"
(...skipping 15 matching lines...) Expand all
49 #include "content/public/common/url_constants.h" 49 #include "content/public/common/url_constants.h"
50 #include "content/public/renderer/content_renderer_client.h" 50 #include "content/public/renderer/content_renderer_client.h"
51 #include "content/public/renderer/render_process_observer.h" 51 #include "content/public/renderer/render_process_observer.h"
52 #include "content/public/renderer/render_view_visitor.h" 52 #include "content/public/renderer/render_view_visitor.h"
53 #include "content/renderer/devtools/devtools_agent_filter.h" 53 #include "content/renderer/devtools/devtools_agent_filter.h"
54 #include "content/renderer/dom_storage/dom_storage_dispatcher.h" 54 #include "content/renderer/dom_storage/dom_storage_dispatcher.h"
55 #include "content/renderer/dom_storage/webstoragearea_impl.h" 55 #include "content/renderer/dom_storage/webstoragearea_impl.h"
56 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 56 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
57 #include "content/renderer/gpu/compositor_output_surface.h" 57 #include "content/renderer/gpu/compositor_output_surface.h"
58 #include "content/renderer/gpu/gpu_benchmarking_extension.h" 58 #include "content/renderer/gpu/gpu_benchmarking_extension.h"
59 #include "content/renderer/gpu/input_event_filter.h"
59 #include "content/renderer/gpu/input_handler_manager.h" 60 #include "content/renderer/gpu/input_handler_manager.h"
60 #include "content/renderer/gpu/input_event_filter.h"
61 #include "content/renderer/media/audio_input_message_filter.h" 61 #include "content/renderer/media/audio_input_message_filter.h"
62 #include "content/renderer/media/audio_message_filter.h" 62 #include "content/renderer/media/audio_message_filter.h"
63 #include "content/renderer/media/audio_renderer_mixer_manager.h" 63 #include "content/renderer/media/audio_renderer_mixer_manager.h"
64 #include "content/renderer/media/media_stream_center.h" 64 #include "content/renderer/media/media_stream_center.h"
65 #include "content/renderer/media/media_stream_dependency_factory.h" 65 #include "content/renderer/media/media_stream_dependency_factory.h"
66 #include "content/renderer/media/peer_connection_tracker.h" 66 #include "content/renderer/media/peer_connection_tracker.h"
67 #include "content/renderer/media/video_capture_impl_manager.h" 67 #include "content/renderer/media/video_capture_impl_manager.h"
68 #include "content/renderer/media/video_capture_message_filter.h" 68 #include "content/renderer/media/video_capture_message_filter.h"
69 #include "content/renderer/memory_benchmarking_extension.h" 69 #include "content/renderer/memory_benchmarking_extension.h"
70 #include "content/renderer/p2p/socket_dispatcher.h" 70 #include "content/renderer/p2p/socket_dispatcher.h"
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 1378
1379 void RenderThreadImpl::SetFlingCurveParameters( 1379 void RenderThreadImpl::SetFlingCurveParameters(
1380 const std::vector<float>& new_touchpad, 1380 const std::vector<float>& new_touchpad,
1381 const std::vector<float>& new_touchscreen) { 1381 const std::vector<float>& new_touchscreen) {
1382 webkit_platform_support_->SetFlingCurveParameters(new_touchpad, 1382 webkit_platform_support_->SetFlingCurveParameters(new_touchpad,
1383 new_touchscreen); 1383 new_touchscreen);
1384 1384
1385 } 1385 }
1386 1386
1387 } // namespace content 1387 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698