| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1518 switches::kVModule, | 1518 switches::kVModule, |
| 1519 // Please keep these in alphabetical order. Compositor switches here should | 1519 // Please keep these in alphabetical order. Compositor switches here should |
| 1520 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1520 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1521 cc::switches::kDisableCachedPictureRaster, | 1521 cc::switches::kDisableCachedPictureRaster, |
| 1522 cc::switches::kDisableCompositedAntialiasing, | 1522 cc::switches::kDisableCompositedAntialiasing, |
| 1523 cc::switches::kDisableMainFrameBeforeActivation, | 1523 cc::switches::kDisableMainFrameBeforeActivation, |
| 1524 cc::switches::kDisableThreadedAnimation, | 1524 cc::switches::kDisableThreadedAnimation, |
| 1525 cc::switches::kEnableBeginFrameScheduling, | 1525 cc::switches::kEnableBeginFrameScheduling, |
| 1526 cc::switches::kEnableGpuBenchmarking, | 1526 cc::switches::kEnableGpuBenchmarking, |
| 1527 cc::switches::kEnableMainFrameBeforeActivation, | 1527 cc::switches::kEnableMainFrameBeforeActivation, |
| 1528 cc::switches::kEnableTileCompression, |
| 1528 cc::switches::kShowCompositedLayerBorders, | 1529 cc::switches::kShowCompositedLayerBorders, |
| 1529 cc::switches::kShowFPSCounter, | 1530 cc::switches::kShowFPSCounter, |
| 1530 cc::switches::kShowLayerAnimationBounds, | 1531 cc::switches::kShowLayerAnimationBounds, |
| 1531 cc::switches::kShowPropertyChangedRects, | 1532 cc::switches::kShowPropertyChangedRects, |
| 1532 cc::switches::kShowReplicaScreenSpaceRects, | 1533 cc::switches::kShowReplicaScreenSpaceRects, |
| 1533 cc::switches::kShowScreenSpaceRects, | 1534 cc::switches::kShowScreenSpaceRects, |
| 1534 cc::switches::kShowSurfaceDamageRects, | 1535 cc::switches::kShowSurfaceDamageRects, |
| 1535 cc::switches::kSlowDownRasterScaleFactor, | 1536 cc::switches::kSlowDownRasterScaleFactor, |
| 1536 cc::switches::kStrictLayerPropertyChangeChecking, | 1537 cc::switches::kStrictLayerPropertyChangeChecking, |
| 1537 cc::switches::kTopControlsHideThreshold, | 1538 cc::switches::kTopControlsHideThreshold, |
| (...skipping 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2792 | 2793 |
| 2793 // Skip widgets in other processes. | 2794 // Skip widgets in other processes. |
| 2794 if (rvh->GetProcess()->GetID() != GetID()) | 2795 if (rvh->GetProcess()->GetID() != GetID()) |
| 2795 continue; | 2796 continue; |
| 2796 | 2797 |
| 2797 rvh->OnWebkitPreferencesChanged(); | 2798 rvh->OnWebkitPreferencesChanged(); |
| 2798 } | 2799 } |
| 2799 } | 2800 } |
| 2800 | 2801 |
| 2801 } // namespace content | 2802 } // namespace content |
| OLD | NEW |