| 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 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 switches::kEnableGPUServiceLogging, | 1444 switches::kEnableGPUServiceLogging, |
| 1445 switches::kEnableIconNtp, | 1445 switches::kEnableIconNtp, |
| 1446 switches::kEnableLinkDisambiguationPopup, | 1446 switches::kEnableLinkDisambiguationPopup, |
| 1447 switches::kEnableLowResTiling, | 1447 switches::kEnableLowResTiling, |
| 1448 switches::kEnableMediaSuspend, | 1448 switches::kEnableMediaSuspend, |
| 1449 switches::kEnableInbandTextTracks, | 1449 switches::kEnableInbandTextTracks, |
| 1450 switches::kEnableLCDText, | 1450 switches::kEnableLCDText, |
| 1451 switches::kEnableLogging, | 1451 switches::kEnableLogging, |
| 1452 switches::kEnableMemoryBenchmarking, | 1452 switches::kEnableMemoryBenchmarking, |
| 1453 switches::kEnableNetworkInformation, | 1453 switches::kEnableNetworkInformation, |
| 1454 switches::kEnableNotificationActionIcons, |
| 1454 switches::kEnableOverlayScrollbar, | 1455 switches::kEnableOverlayScrollbar, |
| 1455 switches::kEnablePinch, | 1456 switches::kEnablePinch, |
| 1456 switches::kEnablePluginPlaceholderTesting, | 1457 switches::kEnablePluginPlaceholderTesting, |
| 1457 switches::kEnablePreciseMemoryInfo, | 1458 switches::kEnablePreciseMemoryInfo, |
| 1458 switches::kEnablePreferCompositingToLCDText, | 1459 switches::kEnablePreferCompositingToLCDText, |
| 1459 switches::kEnablePrefixedEncryptedMedia, | 1460 switches::kEnablePrefixedEncryptedMedia, |
| 1460 switches::kEnableRGBA4444Textures, | 1461 switches::kEnableRGBA4444Textures, |
| 1461 switches::kEnableRendererMojoChannel, | 1462 switches::kEnableRendererMojoChannel, |
| 1462 switches::kEnableSkiaBenchmarking, | 1463 switches::kEnableSkiaBenchmarking, |
| 1463 switches::kEnableSlimmingPaintV2, | 1464 switches::kEnableSlimmingPaintV2, |
| (...skipping 1326 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 |