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

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: Make commit waiting states explicit 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 // Please keep these in alphabetical order. Compositor switches here should 1098 // Please keep these in alphabetical order. Compositor switches here should
1099 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1099 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1100 cc::switches::kBackgroundColorInsteadOfCheckerboard, 1100 cc::switches::kBackgroundColorInsteadOfCheckerboard,
1101 cc::switches::kCompositeToMailbox, 1101 cc::switches::kCompositeToMailbox,
1102 cc::switches::kDisableCompositedAntialiasing, 1102 cc::switches::kDisableCompositedAntialiasing,
1103 cc::switches::kDisableCompositorTouchHitTesting, 1103 cc::switches::kDisableCompositorTouchHitTesting,
1104 cc::switches::kDisableGPURasterization, 1104 cc::switches::kDisableGPURasterization,
1105 cc::switches::kDisableImplSidePainting, 1105 cc::switches::kDisableImplSidePainting,
1106 cc::switches::kDisableLCDText, 1106 cc::switches::kDisableLCDText,
1107 cc::switches::kDisableMapImage, 1107 cc::switches::kDisableMapImage,
1108 cc::switches::kDisableStartCommitBeforeActivate,
1109 cc::switches::kDisableStartCommitBeforeDraw,
1108 cc::switches::kDisableThreadedAnimation, 1110 cc::switches::kDisableThreadedAnimation,
1109 cc::switches::kEnableGPURasterization, 1111 cc::switches::kEnableGPURasterization,
1110 cc::switches::kEnableImplSidePainting, 1112 cc::switches::kEnableImplSidePainting,
1111 cc::switches::kEnableLCDText, 1113 cc::switches::kEnableLCDText,
1112 cc::switches::kEnableMapImage, 1114 cc::switches::kEnableMapImage,
1113 cc::switches::kEnablePartialSwap, 1115 cc::switches::kEnablePartialSwap,
1114 cc::switches::kEnablePerTilePainting, 1116 cc::switches::kEnablePerTilePainting,
1115 cc::switches::kEnablePinchVirtualViewport, 1117 cc::switches::kEnablePinchVirtualViewport,
1118 cc::switches::kEnableStartCommitBeforeActivate,
1119 cc::switches::kEnableStartCommitBeforeDraw,
1116 cc::switches::kEnableTopControlsPositionCalculation, 1120 cc::switches::kEnableTopControlsPositionCalculation,
1117 cc::switches::kMaxTilesForInterestArea, 1121 cc::switches::kMaxTilesForInterestArea,
1118 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1122 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1119 cc::switches::kShowCompositedLayerBorders, 1123 cc::switches::kShowCompositedLayerBorders,
1120 cc::switches::kShowFPSCounter, 1124 cc::switches::kShowFPSCounter,
1121 cc::switches::kShowLayerAnimationBounds, 1125 cc::switches::kShowLayerAnimationBounds,
1122 cc::switches::kShowNonOccludingRects, 1126 cc::switches::kShowNonOccludingRects,
1123 cc::switches::kShowOccludingRects, 1127 cc::switches::kShowOccludingRects,
1124 cc::switches::kShowPropertyChangedRects, 1128 cc::switches::kShowPropertyChangedRects,
1125 cc::switches::kShowReplicaScreenSpaceRects, 1129 cc::switches::kShowReplicaScreenSpaceRects,
(...skipping 915 matching lines...) Expand 10 before | Expand all | Expand 10 after
2041 return; 2045 return;
2042 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2046 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2043 } 2047 }
2044 2048
2045 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2049 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2046 Send(new MediaStreamMsg_DisableAecDump()); 2050 Send(new MediaStreamMsg_DisableAecDump());
2047 } 2051 }
2048 #endif 2052 #endif
2049 2053
2050 } // namespace content 2054 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698