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 1540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1551 switches::kForceWebRtcIPHandlingPolicy, | 1551 switches::kForceWebRtcIPHandlingPolicy, |
1552 switches::kWebRtcMaxCaptureFramerate, | 1552 switches::kWebRtcMaxCaptureFramerate, |
1553 #endif | 1553 #endif |
1554 switches::kEnableLowEndDeviceMode, | 1554 switches::kEnableLowEndDeviceMode, |
1555 switches::kDisableLowEndDeviceMode, | 1555 switches::kDisableLowEndDeviceMode, |
1556 #if defined(OS_ANDROID) | 1556 #if defined(OS_ANDROID) |
1557 switches::kDisableWebAudio, | 1557 switches::kDisableWebAudio, |
1558 switches::kEnableUnifiedMediaPipeline, | 1558 switches::kEnableUnifiedMediaPipeline, |
1559 switches::kIPCSyncCompositing, | 1559 switches::kIPCSyncCompositing, |
1560 switches::kRendererWaitForJavaDebugger, | 1560 switches::kRendererWaitForJavaDebugger, |
| 1561 switches::kEnableImeThread, |
| 1562 switches::kDisableImeThread, |
1561 #endif | 1563 #endif |
1562 #if defined(OS_MACOSX) | 1564 #if defined(OS_MACOSX) |
1563 // Allow this to be set when invoking the browser and relayed along. | 1565 // Allow this to be set when invoking the browser and relayed along. |
1564 switches::kEnableSandboxLogging, | 1566 switches::kEnableSandboxLogging, |
1565 #endif | 1567 #endif |
1566 #if defined(OS_WIN) | 1568 #if defined(OS_WIN) |
1567 switches::kDisableDirectWrite, | 1569 switches::kDisableDirectWrite, |
1568 switches::kDisableWin32kRendererLockDown, | 1570 switches::kDisableWin32kRendererLockDown, |
1569 switches::kTraceExportEventsToETW, | 1571 switches::kTraceExportEventsToETW, |
1570 #endif | 1572 #endif |
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2791 | 2793 |
2792 // Skip widgets in other processes. | 2794 // Skip widgets in other processes. |
2793 if (rvh->GetProcess()->GetID() != GetID()) | 2795 if (rvh->GetProcess()->GetID() != GetID()) |
2794 continue; | 2796 continue; |
2795 | 2797 |
2796 rvh->OnWebkitPreferencesChanged(); | 2798 rvh->OnWebkitPreferencesChanged(); |
2797 } | 2799 } |
2798 } | 2800 } |
2799 | 2801 |
2800 } // namespace content | 2802 } // namespace content |
OLD | NEW |