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

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

Issue 92853002: Support for drawing a debug border around animated layers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Copy switches for chromeos Created 7 years 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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after
1072 cc::switches::kEnableMapImage, 1072 cc::switches::kEnableMapImage,
1073 cc::switches::kEnablePartialSwap, 1073 cc::switches::kEnablePartialSwap,
1074 cc::switches::kEnablePerTilePainting, 1074 cc::switches::kEnablePerTilePainting,
1075 cc::switches::kEnablePinchVirtualViewport, 1075 cc::switches::kEnablePinchVirtualViewport,
1076 cc::switches::kEnableTopControlsPositionCalculation, 1076 cc::switches::kEnableTopControlsPositionCalculation,
1077 cc::switches::kMaxTilesForInterestArea, 1077 cc::switches::kMaxTilesForInterestArea,
1078 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1078 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1079 cc::switches::kNumRasterThreads, 1079 cc::switches::kNumRasterThreads,
1080 cc::switches::kShowCompositedLayerBorders, 1080 cc::switches::kShowCompositedLayerBorders,
1081 cc::switches::kShowFPSCounter, 1081 cc::switches::kShowFPSCounter,
1082 cc::switches::kShowLayerAnimationBounds,
1082 cc::switches::kShowNonOccludingRects, 1083 cc::switches::kShowNonOccludingRects,
1083 cc::switches::kShowOccludingRects, 1084 cc::switches::kShowOccludingRects,
1084 cc::switches::kShowPropertyChangedRects, 1085 cc::switches::kShowPropertyChangedRects,
1085 cc::switches::kShowReplicaScreenSpaceRects, 1086 cc::switches::kShowReplicaScreenSpaceRects,
1086 cc::switches::kShowScreenSpaceRects, 1087 cc::switches::kShowScreenSpaceRects,
1087 cc::switches::kShowSurfaceDamageRects, 1088 cc::switches::kShowSurfaceDamageRects,
1088 cc::switches::kSlowDownRasterScaleFactor, 1089 cc::switches::kSlowDownRasterScaleFactor,
1089 cc::switches::kStrictLayerPropertyChangeChecking, 1090 cc::switches::kStrictLayerPropertyChangeChecking,
1090 cc::switches::kTopControlsHeight, 1091 cc::switches::kTopControlsHeight,
1091 cc::switches::kTopControlsHideThreshold, 1092 cc::switches::kTopControlsHideThreshold,
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1903 // Skip widgets in other processes. 1904 // Skip widgets in other processes.
1904 if (widget->GetProcess()->GetID() != GetID()) 1905 if (widget->GetProcess()->GetID() != GetID())
1905 continue; 1906 continue;
1906 1907
1907 RenderViewHost* rvh = RenderViewHost::From(widget); 1908 RenderViewHost* rvh = RenderViewHost::From(widget);
1908 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1909 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1909 } 1910 }
1910 } 1911 }
1911 1912
1912 } // namespace content 1913 } // 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