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