| 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 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 switches::kDisableWebRtcHWEncoding, | 1370 switches::kDisableWebRtcHWEncoding, |
| 1371 switches::kEnableWebRtcDtls12, | 1371 switches::kEnableWebRtcDtls12, |
| 1372 switches::kEnableWebRtcHWH264Encoding, | 1372 switches::kEnableWebRtcHWH264Encoding, |
| 1373 switches::kEnableWebRtcStunOrigin, | 1373 switches::kEnableWebRtcStunOrigin, |
| 1374 switches::kWebRtcMaxCaptureFramerate, | 1374 switches::kWebRtcMaxCaptureFramerate, |
| 1375 #endif | 1375 #endif |
| 1376 switches::kEnableLowEndDeviceMode, | 1376 switches::kEnableLowEndDeviceMode, |
| 1377 switches::kDisableLowEndDeviceMode, | 1377 switches::kDisableLowEndDeviceMode, |
| 1378 #if defined(OS_ANDROID) | 1378 #if defined(OS_ANDROID) |
| 1379 switches::kDisableGestureRequirementForMediaPlayback, | 1379 switches::kDisableGestureRequirementForMediaPlayback, |
| 1380 switches::kDisableWebAudio, |
| 1380 switches::kDisableWebRTC, | 1381 switches::kDisableWebRTC, |
| 1381 switches::kDisableWebAudio, | 1382 switches::kEnableMediaPipelineOnAndroid, |
| 1382 switches::kRendererWaitForJavaDebugger, | 1383 switches::kRendererWaitForJavaDebugger, |
| 1383 #endif | 1384 #endif |
| 1384 #if defined(OS_MACOSX) | 1385 #if defined(OS_MACOSX) |
| 1385 // Allow this to be set when invoking the browser and relayed along. | 1386 // Allow this to be set when invoking the browser and relayed along. |
| 1386 switches::kEnableSandboxLogging, | 1387 switches::kEnableSandboxLogging, |
| 1387 #endif | 1388 #endif |
| 1388 #if defined(OS_WIN) | 1389 #if defined(OS_WIN) |
| 1389 switches::kDisableDirectWrite, | 1390 switches::kDisableDirectWrite, |
| 1390 switches::kDisableWin32kRendererLockDown, | 1391 switches::kDisableWin32kRendererLockDown, |
| 1391 switches::kTraceExportEventsToETW, | 1392 switches::kTraceExportEventsToETW, |
| (...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2514 void RenderProcessHostImpl::GetAudioOutputControllers( | 2515 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2515 const GetAudioOutputControllersCallback& callback) const { | 2516 const GetAudioOutputControllersCallback& callback) const { |
| 2516 audio_renderer_host()->GetOutputControllers(callback); | 2517 audio_renderer_host()->GetOutputControllers(callback); |
| 2517 } | 2518 } |
| 2518 | 2519 |
| 2519 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2520 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2520 return bluetooth_dispatcher_host_.get(); | 2521 return bluetooth_dispatcher_host_.get(); |
| 2521 } | 2522 } |
| 2522 | 2523 |
| 2523 } // namespace content | 2524 } // namespace content |
| OLD | NEW |