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 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1392 switches::kDisableWebRtcHWEncoding, | 1392 switches::kDisableWebRtcHWEncoding, |
1393 switches::kEnableWebRtcDtls12, | 1393 switches::kEnableWebRtcDtls12, |
1394 switches::kEnableWebRtcHWH264Encoding, | 1394 switches::kEnableWebRtcHWH264Encoding, |
1395 switches::kEnableWebRtcStunOrigin, | 1395 switches::kEnableWebRtcStunOrigin, |
1396 switches::kWebRtcMaxCaptureFramerate, | 1396 switches::kWebRtcMaxCaptureFramerate, |
1397 #endif | 1397 #endif |
1398 switches::kEnableLowEndDeviceMode, | 1398 switches::kEnableLowEndDeviceMode, |
1399 switches::kDisableLowEndDeviceMode, | 1399 switches::kDisableLowEndDeviceMode, |
1400 #if defined(OS_ANDROID) | 1400 #if defined(OS_ANDROID) |
1401 switches::kDisableGestureRequirementForMediaPlayback, | 1401 switches::kDisableGestureRequirementForMediaPlayback, |
1402 switches::kDisableWebRTC, | |
1403 switches::kDisableWebAudio, | 1402 switches::kDisableWebAudio, |
1404 switches::kRendererWaitForJavaDebugger, | 1403 switches::kRendererWaitForJavaDebugger, |
1405 #endif | 1404 #endif |
1406 #if defined(OS_MACOSX) | 1405 #if defined(OS_MACOSX) |
1407 // Allow this to be set when invoking the browser and relayed along. | 1406 // Allow this to be set when invoking the browser and relayed along. |
1408 switches::kEnableSandboxLogging, | 1407 switches::kEnableSandboxLogging, |
1409 #endif | 1408 #endif |
1410 #if defined(OS_WIN) | 1409 #if defined(OS_WIN) |
1411 switches::kDisableDirectWrite, | 1410 switches::kDisableDirectWrite, |
1412 switches::kDisableWin32kRendererLockDown, | 1411 switches::kDisableWin32kRendererLockDown, |
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2531 void RenderProcessHostImpl::GetAudioOutputControllers( | 2530 void RenderProcessHostImpl::GetAudioOutputControllers( |
2532 const GetAudioOutputControllersCallback& callback) const { | 2531 const GetAudioOutputControllersCallback& callback) const { |
2533 audio_renderer_host()->GetOutputControllers(callback); | 2532 audio_renderer_host()->GetOutputControllers(callback); |
2534 } | 2533 } |
2535 | 2534 |
2536 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2535 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2537 return bluetooth_dispatcher_host_.get(); | 2536 return bluetooth_dispatcher_host_.get(); |
2538 } | 2537 } |
2539 | 2538 |
2540 } // namespace content | 2539 } // namespace content |
OLD | NEW |