| 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 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 switches::kDisableRTCSmoothnessAlgorithm, | 1422 switches::kDisableRTCSmoothnessAlgorithm, |
| 1423 switches::kDisableSeccompFilterSandbox, | 1423 switches::kDisableSeccompFilterSandbox, |
| 1424 switches::kDisableSharedWorkers, | 1424 switches::kDisableSharedWorkers, |
| 1425 switches::kDisableSmoothScrolling, | 1425 switches::kDisableSmoothScrolling, |
| 1426 switches::kDisableSpeechAPI, | 1426 switches::kDisableSpeechAPI, |
| 1427 switches::kDisableThreadedCompositing, | 1427 switches::kDisableThreadedCompositing, |
| 1428 switches::kDisableThreadedScrolling, | 1428 switches::kDisableThreadedScrolling, |
| 1429 switches::kDisableTouchAdjustment, | 1429 switches::kDisableTouchAdjustment, |
| 1430 switches::kDisableTouchDragDrop, | 1430 switches::kDisableTouchDragDrop, |
| 1431 switches::kDisableV8IdleTasks, | 1431 switches::kDisableV8IdleTasks, |
| 1432 switches::kDisableWheelGestures, |
| 1432 switches::kDomAutomationController, | 1433 switches::kDomAutomationController, |
| 1433 switches::kEnableBlinkFeatures, | 1434 switches::kEnableBlinkFeatures, |
| 1434 switches::kEnableBrowserSideNavigation, | 1435 switches::kEnableBrowserSideNavigation, |
| 1435 switches::kEnableCredentialManagerAPI, | 1436 switches::kEnableCredentialManagerAPI, |
| 1436 switches::kEnableDisplayList2dCanvas, | 1437 switches::kEnableDisplayList2dCanvas, |
| 1437 switches::kEnableDistanceFieldText, | 1438 switches::kEnableDistanceFieldText, |
| 1438 switches::kEnableExperimentalCanvasFeatures, | 1439 switches::kEnableExperimentalCanvasFeatures, |
| 1439 switches::kEnableExperimentalWebPlatformFeatures, | 1440 switches::kEnableExperimentalWebPlatformFeatures, |
| 1440 switches::kEnableHeapProfiling, | 1441 switches::kEnableHeapProfiling, |
| 1441 switches::kEnableGPUClientLogging, | 1442 switches::kEnableGPUClientLogging, |
| (...skipping 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2790 void RenderProcessHostImpl::GetAudioOutputControllers( | 2791 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2791 const GetAudioOutputControllersCallback& callback) const { | 2792 const GetAudioOutputControllersCallback& callback) const { |
| 2792 audio_renderer_host()->GetOutputControllers(callback); | 2793 audio_renderer_host()->GetOutputControllers(callback); |
| 2793 } | 2794 } |
| 2794 | 2795 |
| 2795 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2796 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2796 return bluetooth_dispatcher_host_.get(); | 2797 return bluetooth_dispatcher_host_.get(); |
| 2797 } | 2798 } |
| 2798 | 2799 |
| 2799 } // namespace content | 2800 } // namespace content |
| OLD | NEW |