| 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 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 // Please keep these in alphabetical order. Compositor switches here should | 1057 // Please keep these in alphabetical order. Compositor switches here should |
| 1058 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1058 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1059 cc::switches::kBackgroundColorInsteadOfCheckerboard, | 1059 cc::switches::kBackgroundColorInsteadOfCheckerboard, |
| 1060 cc::switches::kCompositeToMailbox, | 1060 cc::switches::kCompositeToMailbox, |
| 1061 cc::switches::kDisableCompositedAntialiasing, | 1061 cc::switches::kDisableCompositedAntialiasing, |
| 1062 cc::switches::kDisableCompositorTouchHitTesting, | 1062 cc::switches::kDisableCompositorTouchHitTesting, |
| 1063 cc::switches::kDisableImplSidePainting, | 1063 cc::switches::kDisableImplSidePainting, |
| 1064 cc::switches::kDisableLCDText, | 1064 cc::switches::kDisableLCDText, |
| 1065 cc::switches::kDisableMapImage, | 1065 cc::switches::kDisableMapImage, |
| 1066 cc::switches::kDisableThreadedAnimation, | 1066 cc::switches::kDisableThreadedAnimation, |
| 1067 cc::switches::kEnableGPURasterization, |
| 1067 cc::switches::kEnableImplSidePainting, | 1068 cc::switches::kEnableImplSidePainting, |
| 1068 cc::switches::kEnableLCDText, | 1069 cc::switches::kEnableLCDText, |
| 1069 cc::switches::kEnableMapImage, | 1070 cc::switches::kEnableMapImage, |
| 1070 cc::switches::kEnablePartialSwap, | 1071 cc::switches::kEnablePartialSwap, |
| 1071 cc::switches::kEnablePerTilePainting, | 1072 cc::switches::kEnablePerTilePainting, |
| 1072 cc::switches::kEnablePinchVirtualViewport, | 1073 cc::switches::kEnablePinchVirtualViewport, |
| 1073 cc::switches::kEnableTopControlsPositionCalculation, | 1074 cc::switches::kEnableTopControlsPositionCalculation, |
| 1074 cc::switches::kForceDirectLayerDrawing, | 1075 cc::switches::kForceDirectLayerDrawing, |
| 1075 cc::switches::kLowResolutionContentsScaleFactor, | 1076 cc::switches::kLowResolutionContentsScaleFactor, |
| 1076 cc::switches::kMaxTilesForInterestArea, | 1077 cc::switches::kMaxTilesForInterestArea, |
| (...skipping 814 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 |