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

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

Issue 12211008: Add a benchmarking_extension API to call TCMalloc's HeapProfilerDump(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed the comment 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
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('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 #include <algorithm> 10 #include <algorithm>
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 switches::kEnableBrowserPluginCompositing, 769 switches::kEnableBrowserPluginCompositing,
770 switches::kEnableBrowserPluginForAllViewTypes, 770 switches::kEnableBrowserPluginForAllViewTypes,
771 switches::kEnableDCHECK, 771 switches::kEnableDCHECK,
772 switches::kDisableEncryptedMedia, 772 switches::kDisableEncryptedMedia,
773 switches::kEnableExperimentalWebKitFeatures, 773 switches::kEnableExperimentalWebKitFeatures,
774 switches::kEnableFixedLayout, 774 switches::kEnableFixedLayout,
775 switches::kEnableDeferredImageDecoding, 775 switches::kEnableDeferredImageDecoding,
776 switches::kEnableGPUServiceLogging, 776 switches::kEnableGPUServiceLogging,
777 switches::kEnableGPUClientLogging, 777 switches::kEnableGPUClientLogging,
778 switches::kEnableGpuBenchmarking, 778 switches::kEnableGpuBenchmarking,
779 switches::kEnableMemoryBenchmarking,
779 switches::kEnableLogging, 780 switches::kEnableLogging,
780 switches::kDisableMediaSource, 781 switches::kDisableMediaSource,
781 switches::kDisableWebMediaPlayerMS, 782 switches::kDisableWebMediaPlayerMS,
782 switches::kDisableRendererSideMixing, 783 switches::kDisableRendererSideMixing,
783 switches::kEnableStrictSiteIsolation, 784 switches::kEnableStrictSiteIsolation,
784 switches::kDisableFullScreen, 785 switches::kDisableFullScreen,
785 switches::kEnableNewDialogStyle, 786 switches::kEnableNewDialogStyle,
786 #if defined(ENABLE_PLUGINS) 787 #if defined(ENABLE_PLUGINS)
787 switches::kEnablePepperTesting, 788 switches::kEnablePepperTesting,
788 #endif 789 #endif
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
1612 TRACE_EVENT0("renderer_host", 1613 TRACE_EVENT0("renderer_host",
1613 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1614 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1614 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1615 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1615 ack_params.sync_point = 0; 1616 ack_params.sync_point = 0;
1616 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1617 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1617 gpu_process_host_id, 1618 gpu_process_host_id,
1618 ack_params); 1619 ack_params);
1619 } 1620 }
1620 1621
1621 } // namespace content 1622 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698