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

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

Issue 148983007: cc: Enable rendering stats recording in browser compositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 switches::kEnableCompositingForTransition, 1014 switches::kEnableCompositingForTransition,
1015 switches::kEnableDCHECK, 1015 switches::kEnableDCHECK,
1016 switches::kEnableDeadlineScheduling, 1016 switches::kEnableDeadlineScheduling,
1017 switches::kEnableDeferredImageDecoding, 1017 switches::kEnableDeferredImageDecoding,
1018 switches::kEnableDelegatedRenderer, 1018 switches::kEnableDelegatedRenderer,
1019 switches::kEnableEncryptedMedia, 1019 switches::kEnableEncryptedMedia,
1020 switches::kEnableExperimentalCanvasFeatures, 1020 switches::kEnableExperimentalCanvasFeatures,
1021 switches::kEnableExperimentalWebPlatformFeatures, 1021 switches::kEnableExperimentalWebPlatformFeatures,
1022 switches::kEnableExperimentalWebSocket, 1022 switches::kEnableExperimentalWebSocket,
1023 switches::kEnableFastTextAutosizing, 1023 switches::kEnableFastTextAutosizing,
1024 switches::kEnableGpuBenchmarking,
1025 switches::kEnableGPUClientLogging, 1024 switches::kEnableGPUClientLogging,
1026 switches::kEnableGpuClientTracing, 1025 switches::kEnableGpuClientTracing,
1027 switches::kEnableGPUServiceLogging, 1026 switches::kEnableGPUServiceLogging,
1028 switches::kEnableHighDpiCompositingForFixedPosition, 1027 switches::kEnableHighDpiCompositingForFixedPosition,
1029 switches::kEnableHTMLImports, 1028 switches::kEnableHTMLImports,
1030 switches::kEnableInbandTextTracks, 1029 switches::kEnableInbandTextTracks,
1031 switches::kEnableInputModeAttribute, 1030 switches::kEnableInputModeAttribute,
1032 switches::kEnableLayerSquashing, 1031 switches::kEnableLayerSquashing,
1033 switches::kEnableLogging, 1032 switches::kEnableLogging,
1034 switches::kEnableMP3StreamParser, 1033 switches::kEnableMP3StreamParser,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1094 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1096 cc::switches::kBackgroundColorInsteadOfCheckerboard, 1095 cc::switches::kBackgroundColorInsteadOfCheckerboard,
1097 cc::switches::kCompositeToMailbox, 1096 cc::switches::kCompositeToMailbox,
1098 cc::switches::kDisableCompositedAntialiasing, 1097 cc::switches::kDisableCompositedAntialiasing,
1099 cc::switches::kDisableCompositorTouchHitTesting, 1098 cc::switches::kDisableCompositorTouchHitTesting,
1100 cc::switches::kDisableGPURasterization, 1099 cc::switches::kDisableGPURasterization,
1101 cc::switches::kDisableImplSidePainting, 1100 cc::switches::kDisableImplSidePainting,
1102 cc::switches::kDisableLCDText, 1101 cc::switches::kDisableLCDText,
1103 cc::switches::kDisableMapImage, 1102 cc::switches::kDisableMapImage,
1104 cc::switches::kDisableThreadedAnimation, 1103 cc::switches::kDisableThreadedAnimation,
1104 cc::switches::kEnableGpuBenchmarking,
1105 cc::switches::kEnableGPURasterization, 1105 cc::switches::kEnableGPURasterization,
1106 cc::switches::kEnableImplSidePainting, 1106 cc::switches::kEnableImplSidePainting,
1107 cc::switches::kEnableLCDText, 1107 cc::switches::kEnableLCDText,
1108 cc::switches::kEnableMapImage, 1108 cc::switches::kEnableMapImage,
1109 cc::switches::kEnablePartialSwap, 1109 cc::switches::kEnablePartialSwap,
1110 cc::switches::kEnablePerTilePainting, 1110 cc::switches::kEnablePerTilePainting,
1111 cc::switches::kEnablePinchVirtualViewport, 1111 cc::switches::kEnablePinchVirtualViewport,
1112 cc::switches::kEnableTopControlsPositionCalculation, 1112 cc::switches::kEnableTopControlsPositionCalculation,
1113 cc::switches::kMaxTilesForInterestArea, 1113 cc::switches::kMaxTilesForInterestArea,
1114 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1114 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
2037 return; 2037 return;
2038 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2038 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2039 } 2039 }
2040 2040
2041 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2041 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2042 Send(new MediaStreamMsg_DisableAecDump()); 2042 Send(new MediaStreamMsg_DisableAecDump());
2043 } 2043 }
2044 #endif 2044 #endif
2045 2045
2046 } // namespace content 2046 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/browser_url_handler_impl.cc ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698