| OLD | NEW |
| 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 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 cc::switches::kDisableImplSidePainting, | 1106 cc::switches::kDisableImplSidePainting, |
| 1107 cc::switches::kDisableLCDText, | 1107 cc::switches::kDisableLCDText, |
| 1108 cc::switches::kDisableMapImage, | 1108 cc::switches::kDisableMapImage, |
| 1109 cc::switches::kDisableThreadedAnimation, | 1109 cc::switches::kDisableThreadedAnimation, |
| 1110 cc::switches::kEnableGpuBenchmarking, | 1110 cc::switches::kEnableGpuBenchmarking, |
| 1111 cc::switches::kEnableGPURasterization, | 1111 cc::switches::kEnableGPURasterization, |
| 1112 cc::switches::kEnableImplSidePainting, | 1112 cc::switches::kEnableImplSidePainting, |
| 1113 cc::switches::kEnableLCDText, | 1113 cc::switches::kEnableLCDText, |
| 1114 cc::switches::kEnableMapImage, | 1114 cc::switches::kEnableMapImage, |
| 1115 cc::switches::kEnablePartialSwap, | 1115 cc::switches::kEnablePartialSwap, |
| 1116 cc::switches::kEnablePerTilePainting, |
| 1116 cc::switches::kEnablePinchVirtualViewport, | 1117 cc::switches::kEnablePinchVirtualViewport, |
| 1117 cc::switches::kEnableTopControlsPositionCalculation, | 1118 cc::switches::kEnableTopControlsPositionCalculation, |
| 1118 cc::switches::kMaxTilesForInterestArea, | 1119 cc::switches::kMaxTilesForInterestArea, |
| 1119 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1120 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
| 1120 cc::switches::kShowCompositedLayerBorders, | 1121 cc::switches::kShowCompositedLayerBorders, |
| 1121 cc::switches::kShowFPSCounter, | 1122 cc::switches::kShowFPSCounter, |
| 1122 cc::switches::kShowLayerAnimationBounds, | 1123 cc::switches::kShowLayerAnimationBounds, |
| 1123 cc::switches::kShowNonOccludingRects, | 1124 cc::switches::kShowNonOccludingRects, |
| 1124 cc::switches::kShowOccludingRects, | 1125 cc::switches::kShowOccludingRects, |
| 1125 cc::switches::kShowPropertyChangedRects, | 1126 cc::switches::kShowPropertyChangedRects, |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2072 return; | 2073 return; |
| 2073 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2074 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
| 2074 } | 2075 } |
| 2075 | 2076 |
| 2076 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2077 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
| 2077 Send(new MediaStreamMsg_DisableAecDump()); | 2078 Send(new MediaStreamMsg_DisableAecDump()); |
| 2078 } | 2079 } |
| 2079 #endif | 2080 #endif |
| 2080 | 2081 |
| 2081 } // namespace content | 2082 } // namespace content |
| OLD | NEW |