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 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1446 switches::kEnableGpuClientTracing, | 1446 switches::kEnableGpuClientTracing, |
1447 switches::kEnableGpuMemoryBufferVideoFrames, | 1447 switches::kEnableGpuMemoryBufferVideoFrames, |
1448 switches::kEnableGPUServiceLogging, | 1448 switches::kEnableGPUServiceLogging, |
1449 switches::kEnableIconNtp, | 1449 switches::kEnableIconNtp, |
1450 switches::kEnableLinkDisambiguationPopup, | 1450 switches::kEnableLinkDisambiguationPopup, |
1451 switches::kEnableLowResTiling, | 1451 switches::kEnableLowResTiling, |
1452 switches::kEnableMediaSuspend, | 1452 switches::kEnableMediaSuspend, |
1453 switches::kEnableInbandTextTracks, | 1453 switches::kEnableInbandTextTracks, |
1454 switches::kEnableLCDText, | 1454 switches::kEnableLCDText, |
1455 switches::kEnableLogging, | 1455 switches::kEnableLogging, |
| 1456 switches::kEnableMediaDocumentDownloadButton, |
1456 switches::kEnableMemoryBenchmarking, | 1457 switches::kEnableMemoryBenchmarking, |
1457 switches::kEnableNetworkInformation, | 1458 switches::kEnableNetworkInformation, |
1458 switches::kEnableNotificationActionIcons, | 1459 switches::kEnableNotificationActionIcons, |
1459 switches::kEnableOverlayScrollbar, | 1460 switches::kEnableOverlayScrollbar, |
1460 switches::kEnablePinch, | 1461 switches::kEnablePinch, |
1461 switches::kEnablePluginPlaceholderTesting, | 1462 switches::kEnablePluginPlaceholderTesting, |
1462 switches::kEnablePreciseMemoryInfo, | 1463 switches::kEnablePreciseMemoryInfo, |
1463 switches::kEnablePreferCompositingToLCDText, | 1464 switches::kEnablePreferCompositingToLCDText, |
1464 switches::kEnableRGBA4444Textures, | 1465 switches::kEnableRGBA4444Textures, |
1465 switches::kEnableRendererMojoChannel, | 1466 switches::kEnableRendererMojoChannel, |
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2809 | 2810 |
2810 // Skip widgets in other processes. | 2811 // Skip widgets in other processes. |
2811 if (rvh->GetProcess()->GetID() != GetID()) | 2812 if (rvh->GetProcess()->GetID() != GetID()) |
2812 continue; | 2813 continue; |
2813 | 2814 |
2814 rvh->OnWebkitPreferencesChanged(); | 2815 rvh->OnWebkitPreferencesChanged(); |
2815 } | 2816 } |
2816 } | 2817 } |
2817 | 2818 |
2818 } // namespace content | 2819 } // namespace content |
OLD | NEW |