| 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 1226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1237 switches::kDisableMediaSource, | 1237 switches::kDisableMediaSource, |
| 1238 switches::kDisableMojoChannel, | 1238 switches::kDisableMojoChannel, |
| 1239 switches::kDisableNewVideoRenderer, | 1239 switches::kDisableNewVideoRenderer, |
| 1240 switches::kDisableNotifications, | 1240 switches::kDisableNotifications, |
| 1241 switches::kDisableOverlayScrollbar, | 1241 switches::kDisableOverlayScrollbar, |
| 1242 switches::kDisablePermissionsAPI, | 1242 switches::kDisablePermissionsAPI, |
| 1243 switches::kDisablePinch, | 1243 switches::kDisablePinch, |
| 1244 switches::kDisablePrefixedEncryptedMedia, | 1244 switches::kDisablePrefixedEncryptedMedia, |
| 1245 switches::kDisableSeccompFilterSandbox, | 1245 switches::kDisableSeccompFilterSandbox, |
| 1246 switches::kDisableSharedWorkers, | 1246 switches::kDisableSharedWorkers, |
| 1247 switches::kDisableSlimmingPaint, |
| 1247 switches::kDisableSpeechAPI, | 1248 switches::kDisableSpeechAPI, |
| 1248 switches::kDisableSVG1DOM, | 1249 switches::kDisableSVG1DOM, |
| 1249 switches::kDisableThreadedCompositing, | 1250 switches::kDisableThreadedCompositing, |
| 1250 switches::kDisableThreadedScrolling, | 1251 switches::kDisableThreadedScrolling, |
| 1251 switches::kDisableTouchAdjustment, | 1252 switches::kDisableTouchAdjustment, |
| 1252 switches::kDisableTouchDragDrop, | 1253 switches::kDisableTouchDragDrop, |
| 1253 switches::kDisableTouchEditing, | 1254 switches::kDisableTouchEditing, |
| 1254 switches::kDisableV8IdleTasks, | 1255 switches::kDisableV8IdleTasks, |
| 1255 switches::kDomAutomationController, | 1256 switches::kDomAutomationController, |
| 1256 switches::kEnableBleedingEdgeRenderingFastPaths, | 1257 switches::kEnableBleedingEdgeRenderingFastPaths, |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2492 void RenderProcessHostImpl::GetAudioOutputControllers( | 2493 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2493 const GetAudioOutputControllersCallback& callback) const { | 2494 const GetAudioOutputControllersCallback& callback) const { |
| 2494 audio_renderer_host()->GetOutputControllers(callback); | 2495 audio_renderer_host()->GetOutputControllers(callback); |
| 2495 } | 2496 } |
| 2496 | 2497 |
| 2497 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2498 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2498 return bluetooth_dispatcher_host_.get(); | 2499 return bluetooth_dispatcher_host_.get(); |
| 2499 } | 2500 } |
| 2500 | 2501 |
| 2501 } // namespace content | 2502 } // namespace content |
| OLD | NEW |