| 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 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 switches::kEnableIconNtp, | 1462 switches::kEnableIconNtp, |
| 1463 switches::kEnableLinkDisambiguationPopup, | 1463 switches::kEnableLinkDisambiguationPopup, |
| 1464 switches::kEnableLowResTiling, | 1464 switches::kEnableLowResTiling, |
| 1465 switches::kEnableMediaSuspend, | 1465 switches::kEnableMediaSuspend, |
| 1466 switches::kEnableMojoChannel, | 1466 switches::kEnableMojoChannel, |
| 1467 switches::kEnableInbandTextTracks, | 1467 switches::kEnableInbandTextTracks, |
| 1468 switches::kEnableLCDText, | 1468 switches::kEnableLCDText, |
| 1469 switches::kEnableLogging, | 1469 switches::kEnableLogging, |
| 1470 switches::kEnableMemoryBenchmarking, | 1470 switches::kEnableMemoryBenchmarking, |
| 1471 switches::kEnableNetworkInformation, | 1471 switches::kEnableNetworkInformation, |
| 1472 switches::kEnableNotificationActionIcons, | |
| 1473 switches::kEnableOverlayScrollbar, | 1472 switches::kEnableOverlayScrollbar, |
| 1474 switches::kEnablePinch, | 1473 switches::kEnablePinch, |
| 1475 switches::kEnablePluginPlaceholderTesting, | 1474 switches::kEnablePluginPlaceholderTesting, |
| 1476 switches::kEnablePreciseMemoryInfo, | 1475 switches::kEnablePreciseMemoryInfo, |
| 1477 switches::kEnablePreferCompositingToLCDText, | 1476 switches::kEnablePreferCompositingToLCDText, |
| 1478 switches::kEnableRGBA4444Textures, | 1477 switches::kEnableRGBA4444Textures, |
| 1479 switches::kEnableSkiaBenchmarking, | 1478 switches::kEnableSkiaBenchmarking, |
| 1480 switches::kEnableSlimmingPaintV2, | 1479 switches::kEnableSlimmingPaintV2, |
| 1481 switches::kEnableSmoothScrolling, | 1480 switches::kEnableSmoothScrolling, |
| 1482 switches::kEnableStatsTable, | 1481 switches::kEnableStatsTable, |
| (...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2842 | 2841 |
| 2843 // Skip widgets in other processes. | 2842 // Skip widgets in other processes. |
| 2844 if (rvh->GetProcess()->GetID() != GetID()) | 2843 if (rvh->GetProcess()->GetID() != GetID()) |
| 2845 continue; | 2844 continue; |
| 2846 | 2845 |
| 2847 rvh->OnWebkitPreferencesChanged(); | 2846 rvh->OnWebkitPreferencesChanged(); |
| 2848 } | 2847 } |
| 2849 } | 2848 } |
| 2850 | 2849 |
| 2851 } // namespace content | 2850 } // namespace content |
| OLD | NEW |