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 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 switches::kEnableMemoryBenchmarking, | 1440 switches::kEnableMemoryBenchmarking, |
1441 switches::kEnableNetworkInformation, | 1441 switches::kEnableNetworkInformation, |
1442 switches::kEnableOverlayScrollbar, | 1442 switches::kEnableOverlayScrollbar, |
1443 switches::kEnablePinch, | 1443 switches::kEnablePinch, |
1444 switches::kEnablePluginPlaceholderTesting, | 1444 switches::kEnablePluginPlaceholderTesting, |
1445 switches::kEnablePreciseMemoryInfo, | 1445 switches::kEnablePreciseMemoryInfo, |
1446 switches::kEnablePreferCompositingToLCDText, | 1446 switches::kEnablePreferCompositingToLCDText, |
1447 switches::kEnablePrefixedEncryptedMedia, | 1447 switches::kEnablePrefixedEncryptedMedia, |
1448 switches::kEnableRGBA4444Textures, | 1448 switches::kEnableRGBA4444Textures, |
1449 switches::kEnableRendererMojoChannel, | 1449 switches::kEnableRendererMojoChannel, |
1450 switches::kEnableScrollAnchoring, | |
1451 switches::kEnableSkiaBenchmarking, | 1450 switches::kEnableSkiaBenchmarking, |
1452 switches::kEnableSlimmingPaintV2, | 1451 switches::kEnableSlimmingPaintV2, |
1453 switches::kEnableSmoothScrolling, | 1452 switches::kEnableSmoothScrolling, |
1454 switches::kEnableStatsTable, | 1453 switches::kEnableStatsTable, |
1455 switches::kEnableThreadedCompositing, | 1454 switches::kEnableThreadedCompositing, |
1456 switches::kEnableTouchDragDrop, | 1455 switches::kEnableTouchDragDrop, |
1457 switches::kEnableUnsafeES3APIs, | 1456 switches::kEnableUnsafeES3APIs, |
1458 switches::kEnableUseZoomForDSF, | 1457 switches::kEnableUseZoomForDSF, |
1459 switches::kEnableViewport, | 1458 switches::kEnableViewport, |
1460 switches::kEnableVtune, | 1459 switches::kEnableVtune, |
(...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2789 void RenderProcessHostImpl::GetAudioOutputControllers( | 2788 void RenderProcessHostImpl::GetAudioOutputControllers( |
2790 const GetAudioOutputControllersCallback& callback) const { | 2789 const GetAudioOutputControllersCallback& callback) const { |
2791 audio_renderer_host()->GetOutputControllers(callback); | 2790 audio_renderer_host()->GetOutputControllers(callback); |
2792 } | 2791 } |
2793 | 2792 |
2794 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2793 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2795 return bluetooth_dispatcher_host_.get(); | 2794 return bluetooth_dispatcher_host_.get(); |
2796 } | 2795 } |
2797 | 2796 |
2798 } // namespace content | 2797 } // namespace content |
OLD | NEW |