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

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

Issue 23907006: cc: Allow sending BeginMainFrame before draw or activation (Closed) Base URL: http://git.chromium.org/chromium/src.git@schedDeadline3
Patch Set: fix typo 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
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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 // Please keep these in alphabetical order. Compositor switches here should 1099 // Please keep these in alphabetical order. Compositor switches here should
1100 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1100 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1101 cc::switches::kBackgroundColorInsteadOfCheckerboard, 1101 cc::switches::kBackgroundColorInsteadOfCheckerboard,
1102 cc::switches::kCompositeToMailbox, 1102 cc::switches::kCompositeToMailbox,
1103 cc::switches::kDisableCompositedAntialiasing, 1103 cc::switches::kDisableCompositedAntialiasing,
1104 cc::switches::kDisableCompositorTouchHitTesting, 1104 cc::switches::kDisableCompositorTouchHitTesting,
1105 cc::switches::kDisableGPURasterization, 1105 cc::switches::kDisableGPURasterization,
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::kDisableStartCommitBeforeActivate,
1110 cc::switches::kDisableStartCommitBeforeDraw,
1109 cc::switches::kDisableThreadedAnimation, 1111 cc::switches::kDisableThreadedAnimation,
1110 cc::switches::kEnableGpuBenchmarking, 1112 cc::switches::kEnableGpuBenchmarking,
1111 cc::switches::kEnableGPURasterization, 1113 cc::switches::kEnableGPURasterization,
1112 cc::switches::kEnableImplSidePainting, 1114 cc::switches::kEnableImplSidePainting,
1113 cc::switches::kEnableLCDText, 1115 cc::switches::kEnableLCDText,
1114 cc::switches::kEnableMapImage, 1116 cc::switches::kEnableMapImage,
1115 cc::switches::kEnablePartialSwap, 1117 cc::switches::kEnablePartialSwap,
1116 cc::switches::kEnablePerTilePainting, 1118 cc::switches::kEnablePerTilePainting,
1117 cc::switches::kEnablePinchVirtualViewport, 1119 cc::switches::kEnablePinchVirtualViewport,
1120 cc::switches::kEnableStartCommitBeforeActivate,
1121 cc::switches::kEnableStartCommitBeforeDraw,
1118 cc::switches::kEnableTopControlsPositionCalculation, 1122 cc::switches::kEnableTopControlsPositionCalculation,
1119 cc::switches::kMaxTilesForInterestArea, 1123 cc::switches::kMaxTilesForInterestArea,
1120 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1124 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1121 cc::switches::kShowCompositedLayerBorders, 1125 cc::switches::kShowCompositedLayerBorders,
1122 cc::switches::kShowFPSCounter, 1126 cc::switches::kShowFPSCounter,
1123 cc::switches::kShowLayerAnimationBounds, 1127 cc::switches::kShowLayerAnimationBounds,
1124 cc::switches::kShowNonOccludingRects, 1128 cc::switches::kShowNonOccludingRects,
1125 cc::switches::kShowOccludingRects, 1129 cc::switches::kShowOccludingRects,
1126 cc::switches::kShowPropertyChangedRects, 1130 cc::switches::kShowPropertyChangedRects,
1127 cc::switches::kShowReplicaScreenSpaceRects, 1131 cc::switches::kShowReplicaScreenSpaceRects,
(...skipping 945 matching lines...) Expand 10 before | Expand all | Expand 10 after
2073 return; 2077 return;
2074 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2078 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2075 } 2079 }
2076 2080
2077 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2081 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2078 Send(new MediaStreamMsg_DisableAecDump()); 2082 Send(new MediaStreamMsg_DisableAecDump());
2079 } 2083 }
2080 #endif 2084 #endif
2081 2085
2082 } // namespace content 2086 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698