Chromium Code Reviews| 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 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1446 switches::kDisableWebRtcMultipleRoutes, | 1446 switches::kDisableWebRtcMultipleRoutes, |
| 1447 switches::kEnableWebRtcDtls12, | 1447 switches::kEnableWebRtcDtls12, |
| 1448 switches::kEnableWebRtcHWH264Encoding, | 1448 switches::kEnableWebRtcHWH264Encoding, |
| 1449 switches::kEnableWebRtcStunOrigin, | 1449 switches::kEnableWebRtcStunOrigin, |
| 1450 switches::kEnforceWebRtcIPPermissionCheck, | 1450 switches::kEnforceWebRtcIPPermissionCheck, |
| 1451 switches::kWebRtcMaxCaptureFramerate, | 1451 switches::kWebRtcMaxCaptureFramerate, |
| 1452 #endif | 1452 #endif |
| 1453 switches::kEnableLowEndDeviceMode, | 1453 switches::kEnableLowEndDeviceMode, |
| 1454 switches::kDisableLowEndDeviceMode, | 1454 switches::kDisableLowEndDeviceMode, |
| 1455 #if defined(OS_ANDROID) | 1455 #if defined(OS_ANDROID) |
| 1456 switches::kEnableUnifiedMediaPipeline, | |
|
watk
2015/11/09 21:07:38
Alphabetical order? Looks like the other ones are
DaleCurtis
2015/11/09 21:16:36
Done.
| |
| 1456 switches::kDisableGestureRequirementForMediaPlayback, | 1457 switches::kDisableGestureRequirementForMediaPlayback, |
| 1457 switches::kDisableWebAudio, | 1458 switches::kDisableWebAudio, |
| 1458 switches::kIPCSyncCompositing, | 1459 switches::kIPCSyncCompositing, |
| 1459 switches::kRendererWaitForJavaDebugger, | 1460 switches::kRendererWaitForJavaDebugger, |
| 1460 #endif | 1461 #endif |
| 1461 #if defined(OS_MACOSX) | 1462 #if defined(OS_MACOSX) |
| 1462 // Allow this to be set when invoking the browser and relayed along. | 1463 // Allow this to be set when invoking the browser and relayed along. |
| 1463 switches::kEnableSandboxLogging, | 1464 switches::kEnableSandboxLogging, |
| 1464 #endif | 1465 #endif |
| 1465 #if defined(OS_WIN) | 1466 #if defined(OS_WIN) |
| (...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2635 void RenderProcessHostImpl::GetAudioOutputControllers( | 2636 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2636 const GetAudioOutputControllersCallback& callback) const { | 2637 const GetAudioOutputControllersCallback& callback) const { |
| 2637 audio_renderer_host()->GetOutputControllers(callback); | 2638 audio_renderer_host()->GetOutputControllers(callback); |
| 2638 } | 2639 } |
| 2639 | 2640 |
| 2640 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2641 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2641 return bluetooth_dispatcher_host_.get(); | 2642 return bluetooth_dispatcher_host_.get(); |
| 2642 } | 2643 } |
| 2643 | 2644 |
| 2644 } // namespace content | 2645 } // namespace content |
| OLD | NEW |