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 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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::kDisableWebAudio, | 1548 switches::kDisableWebAudio, |
1549 switches::kEnableUnifiedMediaPipeline, | 1549 switches::kEnableUnifiedMediaPipeline, |
1550 switches::kIPCSyncCompositing, | 1550 switches::kIPCSyncCompositing, |
1551 switches::kRendererWaitForJavaDebugger, | 1551 switches::kRendererWaitForJavaDebugger, |
| 1552 switches::kUseImeThread, |
1552 #endif | 1553 #endif |
1553 #if defined(OS_MACOSX) | 1554 #if defined(OS_MACOSX) |
1554 // Allow this to be set when invoking the browser and relayed along. | 1555 // Allow this to be set when invoking the browser and relayed along. |
1555 switches::kEnableSandboxLogging, | 1556 switches::kEnableSandboxLogging, |
1556 #endif | 1557 #endif |
1557 #if defined(OS_WIN) | 1558 #if defined(OS_WIN) |
1558 switches::kDisableDirectWrite, | 1559 switches::kDisableDirectWrite, |
1559 switches::kDisableWin32kRendererLockDown, | 1560 switches::kDisableWin32kRendererLockDown, |
1560 switches::kTraceExportEventsToETW, | 1561 switches::kTraceExportEventsToETW, |
1561 #endif | 1562 #endif |
(...skipping 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2788 void RenderProcessHostImpl::GetAudioOutputControllers( | 2789 void RenderProcessHostImpl::GetAudioOutputControllers( |
2789 const GetAudioOutputControllersCallback& callback) const { | 2790 const GetAudioOutputControllersCallback& callback) const { |
2790 audio_renderer_host()->GetOutputControllers(callback); | 2791 audio_renderer_host()->GetOutputControllers(callback); |
2791 } | 2792 } |
2792 | 2793 |
2793 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2794 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2794 return bluetooth_dispatcher_host_.get(); | 2795 return bluetooth_dispatcher_host_.get(); |
2795 } | 2796 } |
2796 | 2797 |
2797 } // namespace content | 2798 } // namespace content |
OLD | NEW |