| 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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1350 switches::kEnableNetworkInformation, | 1350 switches::kEnableNetworkInformation, |
| 1351 switches::kEnableOverlayScrollbar, | 1351 switches::kEnableOverlayScrollbar, |
| 1352 switches::kEnablePinch, | 1352 switches::kEnablePinch, |
| 1353 switches::kEnablePluginPlaceholderTesting, | 1353 switches::kEnablePluginPlaceholderTesting, |
| 1354 switches::kEnablePreciseMemoryInfo, | 1354 switches::kEnablePreciseMemoryInfo, |
| 1355 switches::kEnablePreferCompositingToLCDText, | 1355 switches::kEnablePreferCompositingToLCDText, |
| 1356 switches::kEnablePrefixedEncryptedMedia, | 1356 switches::kEnablePrefixedEncryptedMedia, |
| 1357 switches::kEnablePushMessagePayload, | 1357 switches::kEnablePushMessagePayload, |
| 1358 switches::kEnableRGBA4444Textures, | 1358 switches::kEnableRGBA4444Textures, |
| 1359 switches::kEnableRendererMojoChannel, | 1359 switches::kEnableRendererMojoChannel, |
| 1360 switches::kEnableSeccompFilterSandbox, | |
| 1361 switches::kEnableSkiaBenchmarking, | 1360 switches::kEnableSkiaBenchmarking, |
| 1362 switches::kEnableSlimmingPaintV2, | 1361 switches::kEnableSlimmingPaintV2, |
| 1363 switches::kEnableSmoothScrolling, | 1362 switches::kEnableSmoothScrolling, |
| 1364 switches::kEnableStatsTable, | 1363 switches::kEnableStatsTable, |
| 1365 switches::kEnableThreadedCompositing, | 1364 switches::kEnableThreadedCompositing, |
| 1366 switches::kEnableTouchDragDrop, | 1365 switches::kEnableTouchDragDrop, |
| 1367 switches::kEnableUnsafeES3APIs, | 1366 switches::kEnableUnsafeES3APIs, |
| 1368 switches::kEnableUseZoomForDSF, | 1367 switches::kEnableUseZoomForDSF, |
| 1369 switches::kEnableViewport, | 1368 switches::kEnableViewport, |
| 1370 switches::kEnableVtune, | 1369 switches::kEnableVtune, |
| (...skipping 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2634 void RenderProcessHostImpl::GetAudioOutputControllers( | 2633 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2635 const GetAudioOutputControllersCallback& callback) const { | 2634 const GetAudioOutputControllersCallback& callback) const { |
| 2636 audio_renderer_host()->GetOutputControllers(callback); | 2635 audio_renderer_host()->GetOutputControllers(callback); |
| 2637 } | 2636 } |
| 2638 | 2637 |
| 2639 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2638 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2640 return bluetooth_dispatcher_host_.get(); | 2639 return bluetooth_dispatcher_host_.get(); |
| 2641 } | 2640 } |
| 2642 | 2641 |
| 2643 } // namespace content | 2642 } // namespace content |
| OLD | NEW |