| 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 1448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1459 switches::kEnableGpuClientTracing, | 1459 switches::kEnableGpuClientTracing, |
| 1460 switches::kEnableGpuMemoryBufferVideoFrames, | 1460 switches::kEnableGpuMemoryBufferVideoFrames, |
| 1461 switches::kEnableGPUServiceLogging, | 1461 switches::kEnableGPUServiceLogging, |
| 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::kEnableInbandTextTracks, | 1466 switches::kEnableInbandTextTracks, |
| 1467 switches::kEnableLCDText, | 1467 switches::kEnableLCDText, |
| 1468 switches::kEnableLogging, | 1468 switches::kEnableLogging, |
| 1469 switches::kEnableMediaDocumentDownloadButton, |
| 1469 switches::kEnableMemoryBenchmarking, | 1470 switches::kEnableMemoryBenchmarking, |
| 1470 switches::kEnableNetworkInformation, | 1471 switches::kEnableNetworkInformation, |
| 1471 switches::kEnableNotificationActionIcons, | 1472 switches::kEnableNotificationActionIcons, |
| 1472 switches::kEnableOverlayScrollbar, | 1473 switches::kEnableOverlayScrollbar, |
| 1473 switches::kEnablePinch, | 1474 switches::kEnablePinch, |
| 1474 switches::kEnablePluginPlaceholderTesting, | 1475 switches::kEnablePluginPlaceholderTesting, |
| 1475 switches::kEnablePreciseMemoryInfo, | 1476 switches::kEnablePreciseMemoryInfo, |
| 1476 switches::kEnablePreferCompositingToLCDText, | 1477 switches::kEnablePreferCompositingToLCDText, |
| 1477 switches::kEnableRGBA4444Textures, | 1478 switches::kEnableRGBA4444Textures, |
| 1478 switches::kEnableRendererMojoChannel, | 1479 switches::kEnableRendererMojoChannel, |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2820 | 2821 |
| 2821 // Skip widgets in other processes. | 2822 // Skip widgets in other processes. |
| 2822 if (rvh->GetProcess()->GetID() != GetID()) | 2823 if (rvh->GetProcess()->GetID() != GetID()) |
| 2823 continue; | 2824 continue; |
| 2824 | 2825 |
| 2825 rvh->OnWebkitPreferencesChanged(); | 2826 rvh->OnWebkitPreferencesChanged(); |
| 2826 } | 2827 } |
| 2827 } | 2828 } |
| 2828 | 2829 |
| 2829 } // namespace content | 2830 } // namespace content |
| OLD | NEW |