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

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

Issue 69343005: Added preliminary support for tile rasterization with Ganesh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 cc::switches::kCompositeToMailbox, 1065 cc::switches::kCompositeToMailbox,
1066 cc::switches::kDisableCompositedAntialiasing, 1066 cc::switches::kDisableCompositedAntialiasing,
1067 cc::switches::kDisableCompositorTouchHitTesting, 1067 cc::switches::kDisableCompositorTouchHitTesting,
1068 cc::switches::kDisableImplSidePainting, 1068 cc::switches::kDisableImplSidePainting,
1069 cc::switches::kDisableLCDText, 1069 cc::switches::kDisableLCDText,
1070 cc::switches::kDisableMapImage, 1070 cc::switches::kDisableMapImage,
1071 cc::switches::kDisableThreadedAnimation, 1071 cc::switches::kDisableThreadedAnimation,
1072 cc::switches::kEnableImplSidePainting, 1072 cc::switches::kEnableImplSidePainting,
1073 cc::switches::kEnableLCDText, 1073 cc::switches::kEnableLCDText,
1074 cc::switches::kEnableMapImage, 1074 cc::switches::kEnableMapImage,
1075 cc::switches::kEnableGpuRasterizing,
1075 cc::switches::kEnablePartialSwap, 1076 cc::switches::kEnablePartialSwap,
1076 cc::switches::kEnablePerTilePainting, 1077 cc::switches::kEnablePerTilePainting,
1077 cc::switches::kEnablePinchVirtualViewport, 1078 cc::switches::kEnablePinchVirtualViewport,
1078 cc::switches::kEnableTopControlsPositionCalculation, 1079 cc::switches::kEnableTopControlsPositionCalculation,
1079 cc::switches::kForceDirectLayerDrawing, 1080 cc::switches::kForceDirectLayerDrawing,
1080 cc::switches::kLowResolutionContentsScaleFactor, 1081 cc::switches::kLowResolutionContentsScaleFactor,
1081 cc::switches::kMaxTilesForInterestArea, 1082 cc::switches::kMaxTilesForInterestArea,
1082 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, 1083 cc::switches::kMaxUnusedResourceMemoryUsagePercentage,
1083 cc::switches::kNumRasterThreads, 1084 cc::switches::kNumRasterThreads,
1084 cc::switches::kShowCompositedLayerBorders, 1085 cc::switches::kShowCompositedLayerBorders,
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
1896 // Skip widgets in other processes. 1897 // Skip widgets in other processes.
1897 if (widget->GetProcess()->GetID() != GetID()) 1898 if (widget->GetProcess()->GetID() != GetID())
1898 continue; 1899 continue;
1899 1900
1900 RenderViewHost* rvh = RenderViewHost::From(widget); 1901 RenderViewHost* rvh = RenderViewHost::From(widget);
1901 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1902 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1902 } 1903 }
1903 } 1904 }
1904 1905
1905 } // namespace content 1906 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698