| 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 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 switches::kDisableNotifications, | 1349 switches::kDisableNotifications, |
| 1350 switches::kDisableOverlayScrollbar, | 1350 switches::kDisableOverlayScrollbar, |
| 1351 switches::kDisablePermissionsAPI, | 1351 switches::kDisablePermissionsAPI, |
| 1352 switches::kDisablePresentationAPI, | 1352 switches::kDisablePresentationAPI, |
| 1353 switches::kDisablePinch, | 1353 switches::kDisablePinch, |
| 1354 switches::kDisableRGBA4444Textures, | 1354 switches::kDisableRGBA4444Textures, |
| 1355 switches::kDisableRTCSmoothnessAlgorithm, | 1355 switches::kDisableRTCSmoothnessAlgorithm, |
| 1356 switches::kDisableSeccompFilterSandbox, | 1356 switches::kDisableSeccompFilterSandbox, |
| 1357 switches::kDisableSharedWorkers, | 1357 switches::kDisableSharedWorkers, |
| 1358 switches::kDisableSpeechAPI, | 1358 switches::kDisableSpeechAPI, |
| 1359 switches::kDisableSVG1DOM, | |
| 1360 switches::kDisableThreadedCompositing, | 1359 switches::kDisableThreadedCompositing, |
| 1361 switches::kDisableThreadedScrolling, | 1360 switches::kDisableThreadedScrolling, |
| 1362 switches::kDisableTouchAdjustment, | 1361 switches::kDisableTouchAdjustment, |
| 1363 switches::kDisableTouchDragDrop, | 1362 switches::kDisableTouchDragDrop, |
| 1364 switches::kDisableV8IdleTasks, | 1363 switches::kDisableV8IdleTasks, |
| 1365 switches::kDomAutomationController, | 1364 switches::kDomAutomationController, |
| 1366 switches::kEnableBlinkFeatures, | 1365 switches::kEnableBlinkFeatures, |
| 1367 switches::kEnableBrowserSideNavigation, | 1366 switches::kEnableBrowserSideNavigation, |
| 1368 switches::kEnableCredentialManagerAPI, | 1367 switches::kEnableCredentialManagerAPI, |
| 1369 switches::kEnableDisplayList2dCanvas, | 1368 switches::kEnableDisplayList2dCanvas, |
| (...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2671 void RenderProcessHostImpl::GetAudioOutputControllers( | 2670 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2672 const GetAudioOutputControllersCallback& callback) const { | 2671 const GetAudioOutputControllersCallback& callback) const { |
| 2673 audio_renderer_host()->GetOutputControllers(callback); | 2672 audio_renderer_host()->GetOutputControllers(callback); |
| 2674 } | 2673 } |
| 2675 | 2674 |
| 2676 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2675 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2677 return bluetooth_dispatcher_host_.get(); | 2676 return bluetooth_dispatcher_host_.get(); |
| 2678 } | 2677 } |
| 2679 | 2678 |
| 2680 } // namespace content | 2679 } // namespace content |
| OLD | NEW |