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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 12149003: Move tracing code in content\browser to content\browser\tracing now that there's a separate directo… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix android and sync Created 7 years, 10 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
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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 #include "content/browser/renderer_host/render_message_filter.h" 78 #include "content/browser/renderer_host/render_message_filter.h"
79 #include "content/browser/renderer_host/render_view_host_delegate.h" 79 #include "content/browser/renderer_host/render_view_host_delegate.h"
80 #include "content/browser/renderer_host/render_view_host_impl.h" 80 #include "content/browser/renderer_host/render_view_host_impl.h"
81 #include "content/browser/renderer_host/render_widget_helper.h" 81 #include "content/browser/renderer_host/render_widget_helper.h"
82 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h" 82 #include "content/browser/renderer_host/socket_stream_dispatcher_host.h"
83 #include "content/browser/renderer_host/text_input_client_message_filter.h" 83 #include "content/browser/renderer_host/text_input_client_message_filter.h"
84 #include "content/browser/resolve_proxy_msg_helper.h" 84 #include "content/browser/resolve_proxy_msg_helper.h"
85 #include "content/browser/storage_partition_impl.h" 85 #include "content/browser/storage_partition_impl.h"
86 #include "content/browser/speech/input_tag_speech_dispatcher_host.h" 86 #include "content/browser/speech/input_tag_speech_dispatcher_host.h"
87 #include "content/browser/speech/speech_recognition_dispatcher_host.h" 87 #include "content/browser/speech/speech_recognition_dispatcher_host.h"
88 #include "content/browser/trace_message_filter.h" 88 #include "content/browser/tracing/trace_message_filter.h"
89 #include "content/browser/webui/web_ui_controller_factory_registry.h" 89 #include "content/browser/webui/web_ui_controller_factory_registry.h"
90 #include "content/browser/worker_host/worker_storage_partition.h" 90 #include "content/browser/worker_host/worker_storage_partition.h"
91 #include "content/browser/worker_host/worker_message_filter.h" 91 #include "content/browser/worker_host/worker_message_filter.h"
92 #include "content/common/child_process_host_impl.h" 92 #include "content/common/child_process_host_impl.h"
93 #include "content/common/child_process_messages.h" 93 #include "content/common/child_process_messages.h"
94 #include "content/common/gpu/gpu_messages.h" 94 #include "content/common/gpu/gpu_messages.h"
95 #include "content/common/resource_messages.h" 95 #include "content/common/resource_messages.h"
96 #include "content/common/view_messages.h" 96 #include "content/common/view_messages.h"
97 #include "content/public/browser/browser_context.h" 97 #include "content/public/browser/browser_context.h"
98 #include "content/public/browser/content_browser_client.h" 98 #include "content/public/browser/content_browser_client.h"
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 TRACE_EVENT0("renderer_host", 1610 TRACE_EVENT0("renderer_host",
1611 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1611 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1612 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1612 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1613 ack_params.sync_point = 0; 1613 ack_params.sync_point = 0;
1614 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1614 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1615 gpu_process_host_id, 1615 gpu_process_host_id,
1616 ack_params); 1616 ack_params);
1617 } 1617 }
1618 1618
1619 } // namespace content 1619 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/pepper/browser_ppapi_host_impl.cc ('k') | content/browser/trace_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698