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 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 switches::kEnableGpuMemoryBufferVideoFrames, | 1457 switches::kEnableGpuMemoryBufferVideoFrames, |
1458 switches::kEnableGPUServiceLogging, | 1458 switches::kEnableGPUServiceLogging, |
1459 switches::kEnableIconNtp, | 1459 switches::kEnableIconNtp, |
1460 switches::kEnableLinkDisambiguationPopup, | 1460 switches::kEnableLinkDisambiguationPopup, |
1461 switches::kEnableLowResTiling, | 1461 switches::kEnableLowResTiling, |
1462 switches::kEnableMediaSuspend, | 1462 switches::kEnableMediaSuspend, |
1463 switches::kEnableMojoChannel, | 1463 switches::kEnableMojoChannel, |
1464 switches::kEnableInbandTextTracks, | 1464 switches::kEnableInbandTextTracks, |
1465 switches::kEnableLCDText, | 1465 switches::kEnableLCDText, |
1466 switches::kEnableLogging, | 1466 switches::kEnableLogging, |
| 1467 switches::kEnableMediaDocumentDownloadButton, |
1467 switches::kEnableMemoryBenchmarking, | 1468 switches::kEnableMemoryBenchmarking, |
1468 switches::kEnableNetworkInformation, | 1469 switches::kEnableNetworkInformation, |
1469 switches::kEnableNotificationActionIcons, | 1470 switches::kEnableNotificationActionIcons, |
1470 switches::kEnableOverlayScrollbar, | 1471 switches::kEnableOverlayScrollbar, |
1471 switches::kEnablePinch, | 1472 switches::kEnablePinch, |
1472 switches::kEnablePluginPlaceholderTesting, | 1473 switches::kEnablePluginPlaceholderTesting, |
1473 switches::kEnablePreciseMemoryInfo, | 1474 switches::kEnablePreciseMemoryInfo, |
1474 switches::kEnablePreferCompositingToLCDText, | 1475 switches::kEnablePreferCompositingToLCDText, |
1475 switches::kEnableRGBA4444Textures, | 1476 switches::kEnableRGBA4444Textures, |
1476 switches::kEnableSkiaBenchmarking, | 1477 switches::kEnableSkiaBenchmarking, |
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2815 | 2816 |
2816 // Skip widgets in other processes. | 2817 // Skip widgets in other processes. |
2817 if (rvh->GetProcess()->GetID() != GetID()) | 2818 if (rvh->GetProcess()->GetID() != GetID()) |
2818 continue; | 2819 continue; |
2819 | 2820 |
2820 rvh->OnWebkitPreferencesChanged(); | 2821 rvh->OnWebkitPreferencesChanged(); |
2821 } | 2822 } |
2822 } | 2823 } |
2823 | 2824 |
2824 } // namespace content | 2825 } // namespace content |
OLD | NEW |