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

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

Issue 10454086: Histograms - Support histograms for Plugins, GPU (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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/browser/histogram_synchronizer.cc ('k') | content/browser/resource_context_impl.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 // 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 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "content/browser/child_process_security_policy_impl.h" 47 #include "content/browser/child_process_security_policy_impl.h"
48 #include "content/browser/device_orientation/orientation_message_filter.h" 48 #include "content/browser/device_orientation/orientation_message_filter.h"
49 #include "content/browser/dom_storage/dom_storage_context_impl.h" 49 #include "content/browser/dom_storage/dom_storage_context_impl.h"
50 #include "content/browser/dom_storage/dom_storage_message_filter.h" 50 #include "content/browser/dom_storage/dom_storage_message_filter.h"
51 #include "content/browser/download/mhtml_generation_manager.h" 51 #include "content/browser/download/mhtml_generation_manager.h"
52 #include "content/browser/fileapi/chrome_blob_storage_context.h" 52 #include "content/browser/fileapi/chrome_blob_storage_context.h"
53 #include "content/browser/fileapi/fileapi_message_filter.h" 53 #include "content/browser/fileapi/fileapi_message_filter.h"
54 #include "content/browser/geolocation/geolocation_dispatcher_host.h" 54 #include "content/browser/geolocation/geolocation_dispatcher_host.h"
55 #include "content/browser/gpu/gpu_data_manager_impl.h" 55 #include "content/browser/gpu/gpu_data_manager_impl.h"
56 #include "content/browser/gpu/gpu_process_host.h" 56 #include "content/browser/gpu/gpu_process_host.h"
57 #include "content/browser/histogram_message_filter.h"
57 #include "content/browser/in_process_webkit/indexed_db_context_impl.h" 58 #include "content/browser/in_process_webkit/indexed_db_context_impl.h"
58 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h" 59 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
59 #include "content/browser/mime_registry_message_filter.h" 60 #include "content/browser/mime_registry_message_filter.h"
60 #include "content/browser/plugin_service_impl.h" 61 #include "content/browser/plugin_service_impl.h"
61 #include "content/browser/profiler_message_filter.h" 62 #include "content/browser/profiler_message_filter.h"
62 #include "content/browser/renderer_host/clipboard_message_filter.h" 63 #include "content/browser/renderer_host/clipboard_message_filter.h"
63 #include "content/browser/renderer_host/database_message_filter.h" 64 #include "content/browser/renderer_host/database_message_filter.h"
64 #include "content/browser/renderer_host/file_utilities_message_filter.h" 65 #include "content/browser/renderer_host/file_utilities_message_filter.h"
65 #include "content/browser/renderer_host/gamepad_browser_message_filter.h" 66 #include "content/browser/renderer_host/gamepad_browser_message_filter.h"
66 #include "content/browser/renderer_host/gpu_message_filter.h" 67 #include "content/browser/renderer_host/gpu_message_filter.h"
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 597
597 channel_->AddFilter(new TraceMessageFilter()); 598 channel_->AddFilter(new TraceMessageFilter());
598 channel_->AddFilter(new ResolveProxyMsgHelper( 599 channel_->AddFilter(new ResolveProxyMsgHelper(
599 browser_context->GetRequestContextForRenderProcess(GetID()))); 600 browser_context->GetRequestContextForRenderProcess(GetID())));
600 channel_->AddFilter(new QuotaDispatcherHost( 601 channel_->AddFilter(new QuotaDispatcherHost(
601 GetID(), 602 GetID(),
602 BrowserContext::GetQuotaManager(browser_context), 603 BrowserContext::GetQuotaManager(browser_context),
603 GetContentClient()->browser()->CreateQuotaPermissionContext())); 604 GetContentClient()->browser()->CreateQuotaPermissionContext()));
604 channel_->AddFilter(new GamepadBrowserMessageFilter(this)); 605 channel_->AddFilter(new GamepadBrowserMessageFilter(this));
605 channel_->AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER)); 606 channel_->AddFilter(new ProfilerMessageFilter(PROCESS_TYPE_RENDERER));
607 channel_->AddFilter(new content::HistogramMessageFilter());
606 } 608 }
607 609
608 int RenderProcessHostImpl::GetNextRoutingID() { 610 int RenderProcessHostImpl::GetNextRoutingID() {
609 return widget_helper_->GetNextRoutingID(); 611 return widget_helper_->GetNextRoutingID();
610 } 612 }
611 613
612 void RenderProcessHostImpl::CancelResourceRequests(int render_widget_id) { 614 void RenderProcessHostImpl::CancelResourceRequests(int render_widget_id) {
613 widget_helper_->CancelResourceRequests(render_widget_id); 615 widget_helper_->CancelResourceRequests(render_widget_id);
614 } 616 }
615 617
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
1500 int32 route_id, 1502 int32 route_id,
1501 int32 gpu_process_host_id) { 1503 int32 gpu_process_host_id) {
1502 TRACE_EVENT0("renderer_host", 1504 TRACE_EVENT0("renderer_host",
1503 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1505 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1504 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1506 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1505 gpu_process_host_id, 1507 gpu_process_host_id,
1506 0); 1508 0);
1507 } 1509 }
1508 1510
1509 } // namespace content 1511 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/histogram_synchronizer.cc ('k') | content/browser/resource_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698