| 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 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1298 switches::kEnableRendererMojoChannel, | 1298 switches::kEnableRendererMojoChannel, |
| 1299 switches::kEnableRTCSmoothnessAlgorithm, | 1299 switches::kEnableRTCSmoothnessAlgorithm, |
| 1300 switches::kEnableSeccompFilterSandbox, | 1300 switches::kEnableSeccompFilterSandbox, |
| 1301 switches::kEnableSkiaBenchmarking, | 1301 switches::kEnableSkiaBenchmarking, |
| 1302 switches::kEnableSlimmingPaintV2, | 1302 switches::kEnableSlimmingPaintV2, |
| 1303 switches::kEnableSmoothScrolling, | 1303 switches::kEnableSmoothScrolling, |
| 1304 switches::kEnableStatsTable, | 1304 switches::kEnableStatsTable, |
| 1305 switches::kEnableThreadedCompositing, | 1305 switches::kEnableThreadedCompositing, |
| 1306 switches::kEnableTouchDragDrop, | 1306 switches::kEnableTouchDragDrop, |
| 1307 switches::kEnableUnsafeES3APIs, | 1307 switches::kEnableUnsafeES3APIs, |
| 1308 switches::kEnableUseZoomForDSF, |
| 1308 switches::kEnableViewport, | 1309 switches::kEnableViewport, |
| 1309 switches::kEnableVtune, | 1310 switches::kEnableVtune, |
| 1310 switches::kEnableWebBluetooth, | 1311 switches::kEnableWebBluetooth, |
| 1311 switches::kEnableWebGLDraftExtensions, | 1312 switches::kEnableWebGLDraftExtensions, |
| 1312 switches::kEnableWebGLImageChromium, | 1313 switches::kEnableWebGLImageChromium, |
| 1313 switches::kEnableWebVR, | 1314 switches::kEnableWebVR, |
| 1314 switches::kExplicitlyAllowedPorts, | 1315 switches::kExplicitlyAllowedPorts, |
| 1315 switches::kForceDeviceScaleFactor, | 1316 switches::kForceDeviceScaleFactor, |
| 1316 switches::kForceDisplayList2dCanvas, | 1317 switches::kForceDisplayList2dCanvas, |
| 1317 switches::kForceOverlayFullscreenVideo, | 1318 switches::kForceOverlayFullscreenVideo, |
| (...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2556 void RenderProcessHostImpl::GetAudioOutputControllers( | 2557 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2557 const GetAudioOutputControllersCallback& callback) const { | 2558 const GetAudioOutputControllersCallback& callback) const { |
| 2558 audio_renderer_host()->GetOutputControllers(callback); | 2559 audio_renderer_host()->GetOutputControllers(callback); |
| 2559 } | 2560 } |
| 2560 | 2561 |
| 2561 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2562 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2562 return bluetooth_dispatcher_host_.get(); | 2563 return bluetooth_dispatcher_host_.get(); |
| 2563 } | 2564 } |
| 2564 | 2565 |
| 2565 } // namespace content | 2566 } // namespace content |
| OLD | NEW |