| 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 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1455 switches::kEnableLCDText, | 1455 switches::kEnableLCDText, |
| 1456 switches::kEnableLogging, | 1456 switches::kEnableLogging, |
| 1457 switches::kEnableMemoryBenchmarking, | 1457 switches::kEnableMemoryBenchmarking, |
| 1458 switches::kEnableNetworkInformation, | 1458 switches::kEnableNetworkInformation, |
| 1459 switches::kEnableNotificationActionIcons, | 1459 switches::kEnableNotificationActionIcons, |
| 1460 switches::kEnableOverlayScrollbar, | 1460 switches::kEnableOverlayScrollbar, |
| 1461 switches::kEnablePinch, | 1461 switches::kEnablePinch, |
| 1462 switches::kEnablePluginPlaceholderTesting, | 1462 switches::kEnablePluginPlaceholderTesting, |
| 1463 switches::kEnablePreciseMemoryInfo, | 1463 switches::kEnablePreciseMemoryInfo, |
| 1464 switches::kEnablePreferCompositingToLCDText, | 1464 switches::kEnablePreferCompositingToLCDText, |
| 1465 switches::kEnablePrefixedEncryptedMedia, | |
| 1466 switches::kEnableRGBA4444Textures, | 1465 switches::kEnableRGBA4444Textures, |
| 1467 switches::kEnableRendererMojoChannel, | 1466 switches::kEnableRendererMojoChannel, |
| 1468 switches::kEnableSkiaBenchmarking, | 1467 switches::kEnableSkiaBenchmarking, |
| 1469 switches::kEnableSlimmingPaintV2, | 1468 switches::kEnableSlimmingPaintV2, |
| 1470 switches::kEnableSmoothScrolling, | 1469 switches::kEnableSmoothScrolling, |
| 1471 switches::kEnableStatsTable, | 1470 switches::kEnableStatsTable, |
| 1472 switches::kEnableThreadedCompositing, | 1471 switches::kEnableThreadedCompositing, |
| 1473 switches::kEnableTouchDragDrop, | 1472 switches::kEnableTouchDragDrop, |
| 1474 switches::kEnableUnsafeES3APIs, | 1473 switches::kEnableUnsafeES3APIs, |
| 1475 switches::kEnableUseZoomForDSF, | 1474 switches::kEnableUseZoomForDSF, |
| (...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2794 | 2793 |
| 2795 // Skip widgets in other processes. | 2794 // Skip widgets in other processes. |
| 2796 if (rvh->GetProcess()->GetID() != GetID()) | 2795 if (rvh->GetProcess()->GetID() != GetID()) |
| 2797 continue; | 2796 continue; |
| 2798 | 2797 |
| 2799 rvh->OnWebkitPreferencesChanged(); | 2798 rvh->OnWebkitPreferencesChanged(); |
| 2800 } | 2799 } |
| 2801 } | 2800 } |
| 2802 | 2801 |
| 2803 } // namespace content | 2802 } // namespace content |
| OLD | NEW |