| 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 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1538 switches::kEnableWebRtcDtls12, | 1538 switches::kEnableWebRtcDtls12, |
| 1539 switches::kEnableWebRtcHWH264Encoding, | 1539 switches::kEnableWebRtcHWH264Encoding, |
| 1540 switches::kEnableWebRtcStunOrigin, | 1540 switches::kEnableWebRtcStunOrigin, |
| 1541 switches::kEnforceWebRtcIPPermissionCheck, | 1541 switches::kEnforceWebRtcIPPermissionCheck, |
| 1542 switches::kForceWebRtcIPHandlingPolicy, | 1542 switches::kForceWebRtcIPHandlingPolicy, |
| 1543 switches::kWebRtcMaxCaptureFramerate, | 1543 switches::kWebRtcMaxCaptureFramerate, |
| 1544 #endif | 1544 #endif |
| 1545 switches::kEnableLowEndDeviceMode, | 1545 switches::kEnableLowEndDeviceMode, |
| 1546 switches::kDisableLowEndDeviceMode, | 1546 switches::kDisableLowEndDeviceMode, |
| 1547 #if defined(OS_ANDROID) | 1547 #if defined(OS_ANDROID) |
| 1548 switches::kDisableUnifiedMediaPipeline, | 1548 switches::kEnableUnifiedMediaPipeline, |
| 1549 switches::kIPCSyncCompositing, | 1549 switches::kIPCSyncCompositing, |
| 1550 switches::kRendererWaitForJavaDebugger, | 1550 switches::kRendererWaitForJavaDebugger, |
| 1551 #endif | 1551 #endif |
| 1552 #if defined(OS_MACOSX) | 1552 #if defined(OS_MACOSX) |
| 1553 // Allow this to be set when invoking the browser and relayed along. | 1553 // Allow this to be set when invoking the browser and relayed along. |
| 1554 switches::kEnableSandboxLogging, | 1554 switches::kEnableSandboxLogging, |
| 1555 #endif | 1555 #endif |
| 1556 #if defined(OS_WIN) | 1556 #if defined(OS_WIN) |
| 1557 switches::kDisableDirectWrite, | 1557 switches::kDisableDirectWrite, |
| 1558 switches::kDisableWin32kRendererLockDown, | 1558 switches::kDisableWin32kRendererLockDown, |
| (...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2808 | 2808 |
| 2809 // Skip widgets in other processes. | 2809 // Skip widgets in other processes. |
| 2810 if (rvh->GetProcess()->GetID() != GetID()) | 2810 if (rvh->GetProcess()->GetID() != GetID()) |
| 2811 continue; | 2811 continue; |
| 2812 | 2812 |
| 2813 rvh->OnWebkitPreferencesChanged(); | 2813 rvh->OnWebkitPreferencesChanged(); |
| 2814 } | 2814 } |
| 2815 } | 2815 } |
| 2816 | 2816 |
| 2817 } // namespace content | 2817 } // namespace content |
| OLD | NEW |