OLD | NEW |
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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 // Please keep these in alphabetical order. Compositor switches here should | 1056 // Please keep these in alphabetical order. Compositor switches here should |
1057 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1057 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1058 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 1058 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
1059 cc::switches::kCompositeToMailbox, | 1059 cc::switches::kCompositeToMailbox, |
1060 cc::switches::kDisableCompositedAntialiasing, | 1060 cc::switches::kDisableCompositedAntialiasing, |
1061 cc::switches::kDisableCompositorTouchHitTesting, | 1061 cc::switches::kDisableCompositorTouchHitTesting, |
1062 cc::switches::kDisableImplSidePainting, | 1062 cc::switches::kDisableImplSidePainting, |
1063 cc::switches::kDisableLCDText, | 1063 cc::switches::kDisableLCDText, |
1064 cc::switches::kDisableMapImage, | 1064 cc::switches::kDisableMapImage, |
1065 cc::switches::kDisableThreadedAnimation, | 1065 cc::switches::kDisableThreadedAnimation, |
| 1066 cc::switches::kEnableGPURasterization, |
1066 cc::switches::kEnableImplSidePainting, | 1067 cc::switches::kEnableImplSidePainting, |
1067 cc::switches::kEnableLCDText, | 1068 cc::switches::kEnableLCDText, |
1068 cc::switches::kEnableMapImage, | 1069 cc::switches::kEnableMapImage, |
1069 cc::switches::kEnablePartialSwap, | 1070 cc::switches::kEnablePartialSwap, |
1070 cc::switches::kEnablePerTilePainting, | 1071 cc::switches::kEnablePerTilePainting, |
1071 cc::switches::kEnablePinchVirtualViewport, | 1072 cc::switches::kEnablePinchVirtualViewport, |
1072 cc::switches::kEnableTopControlsPositionCalculation, | 1073 cc::switches::kEnableTopControlsPositionCalculation, |
1073 cc::switches::kForceDirectLayerDrawing, | 1074 cc::switches::kForceDirectLayerDrawing, |
1074 cc::switches::kLowResolutionContentsScaleFactor, | 1075 cc::switches::kLowResolutionContentsScaleFactor, |
1075 cc::switches::kMaxTilesForInterestArea, | 1076 cc::switches::kMaxTilesForInterestArea, |
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1891 // Skip widgets in other processes. | 1892 // Skip widgets in other processes. |
1892 if (widget->GetProcess()->GetID() != GetID()) | 1893 if (widget->GetProcess()->GetID() != GetID()) |
1893 continue; | 1894 continue; |
1894 | 1895 |
1895 RenderViewHost* rvh = RenderViewHost::From(widget); | 1896 RenderViewHost* rvh = RenderViewHost::From(widget); |
1896 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1897 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
1897 } | 1898 } |
1898 } | 1899 } |
1899 | 1900 |
1900 } // namespace content | 1901 } // namespace content |
OLD | NEW |