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

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

Issue 164183012: Remove --enable-per-tile-painting and --ui-enable-per-tile-painting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: enablepertilepainting: rebase 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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, 1113 cc::switches::kEnablePartialSwap,
1114 cc::switches::kEnablePerTilePainting,
1115 cc::switches::kEnablePinchVirtualViewport, 1114 cc::switches::kEnablePinchVirtualViewport,
1116 cc::switches::kEnableTopControlsPositionCalculation, 1115 cc::switches::kEnableTopControlsPositionCalculation,
1117 cc::switches::kMaxTilesForInterestArea, 1116 cc::switches::kMaxTilesForInterestArea,
1118 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1117 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1119 cc::switches::kShowCompositedLayerBorders, 1118 cc::switches::kShowCompositedLayerBorders,
1120 cc::switches::kShowFPSCounter, 1119 cc::switches::kShowFPSCounter,
1121 cc::switches::kShowLayerAnimationBounds, 1120 cc::switches::kShowLayerAnimationBounds,
1122 cc::switches::kShowNonOccludingRects, 1121 cc::switches::kShowNonOccludingRects,
1123 cc::switches::kShowOccludingRects, 1122 cc::switches::kShowOccludingRects,
1124 cc::switches::kShowPropertyChangedRects, 1123 cc::switches::kShowPropertyChangedRects,
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
2073 return; 2072 return;
2074 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2073 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2075 } 2074 }
2076 2075
2077 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2076 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2078 Send(new MediaStreamMsg_DisableAecDump()); 2077 Send(new MediaStreamMsg_DisableAecDump());
2079 } 2078 }
2080 #endif 2079 #endif
2081 2080
2082 } // namespace content 2081 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698