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

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

Issue 167953003: cc: Remove the --enable-partial-swap flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: enablepartialswap: build 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 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 cc::switches::kDisableGPURasterization, 1103 cc::switches::kDisableGPURasterization,
1104 cc::switches::kDisableImplSidePainting, 1104 cc::switches::kDisableImplSidePainting,
1105 cc::switches::kDisableLCDText, 1105 cc::switches::kDisableLCDText,
1106 cc::switches::kDisableMapImage, 1106 cc::switches::kDisableMapImage,
1107 cc::switches::kDisableThreadedAnimation, 1107 cc::switches::kDisableThreadedAnimation,
1108 cc::switches::kEnableGpuBenchmarking, 1108 cc::switches::kEnableGpuBenchmarking,
1109 cc::switches::kEnableGPURasterization, 1109 cc::switches::kEnableGPURasterization,
1110 cc::switches::kEnableImplSidePainting, 1110 cc::switches::kEnableImplSidePainting,
1111 cc::switches::kEnableLCDText, 1111 cc::switches::kEnableLCDText,
1112 cc::switches::kEnableMapImage, 1112 cc::switches::kEnableMapImage,
1113 cc::switches::kEnablePartialSwap,
1114 cc::switches::kEnablePinchVirtualViewport, 1113 cc::switches::kEnablePinchVirtualViewport,
1115 cc::switches::kEnableTopControlsPositionCalculation, 1114 cc::switches::kEnableTopControlsPositionCalculation,
1116 cc::switches::kMaxTilesForInterestArea, 1115 cc::switches::kMaxTilesForInterestArea,
1117 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1116 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1118 cc::switches::kShowCompositedLayerBorders, 1117 cc::switches::kShowCompositedLayerBorders,
1119 cc::switches::kShowFPSCounter, 1118 cc::switches::kShowFPSCounter,
1120 cc::switches::kShowLayerAnimationBounds, 1119 cc::switches::kShowLayerAnimationBounds,
1121 cc::switches::kShowNonOccludingRects, 1120 cc::switches::kShowNonOccludingRects,
1122 cc::switches::kShowOccludingRects, 1121 cc::switches::kShowOccludingRects,
1123 cc::switches::kShowPropertyChangedRects, 1122 cc::switches::kShowPropertyChangedRects,
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2072 return; 2071 return;
2073 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2072 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2074 } 2073 }
2075 2074
2076 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2075 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2077 Send(new MediaStreamMsg_DisableAecDump()); 2076 Send(new MediaStreamMsg_DisableAecDump());
2078 } 2077 }
2079 #endif 2078 #endif
2080 2079
2081 } // namespace content 2080 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698