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 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1351 switches::kEnableRGBA4444Textures, | 1351 switches::kEnableRGBA4444Textures, |
1352 switches::kEnableRendererMojoChannel, | 1352 switches::kEnableRendererMojoChannel, |
1353 switches::kEnableSeccompFilterSandbox, | 1353 switches::kEnableSeccompFilterSandbox, |
1354 switches::kEnableSkiaBenchmarking, | 1354 switches::kEnableSkiaBenchmarking, |
1355 switches::kEnableSlimmingPaintV2, | 1355 switches::kEnableSlimmingPaintV2, |
1356 switches::kEnableSmoothScrolling, | 1356 switches::kEnableSmoothScrolling, |
1357 switches::kEnableStatsTable, | 1357 switches::kEnableStatsTable, |
1358 switches::kEnableThreadedCompositing, | 1358 switches::kEnableThreadedCompositing, |
1359 switches::kEnableTouchDragDrop, | 1359 switches::kEnableTouchDragDrop, |
1360 switches::kEnableUnsafeES3APIs, | 1360 switches::kEnableUnsafeES3APIs, |
| 1361 switches::kEnableUseZoomForDSF, |
1361 switches::kEnableViewport, | 1362 switches::kEnableViewport, |
1362 switches::kEnableVtune, | 1363 switches::kEnableVtune, |
1363 switches::kEnableWebBluetooth, | 1364 switches::kEnableWebBluetooth, |
1364 switches::kEnableWebGLDraftExtensions, | 1365 switches::kEnableWebGLDraftExtensions, |
1365 switches::kEnableWebGLImageChromium, | 1366 switches::kEnableWebGLImageChromium, |
1366 switches::kEnableWebVR, | 1367 switches::kEnableWebVR, |
1367 switches::kExplicitlyAllowedPorts, | 1368 switches::kExplicitlyAllowedPorts, |
1368 switches::kForceDeviceScaleFactor, | 1369 switches::kForceDeviceScaleFactor, |
1369 switches::kForceDisplayList2dCanvas, | 1370 switches::kForceDisplayList2dCanvas, |
1370 switches::kForceOverlayFullscreenVideo, | 1371 switches::kForceOverlayFullscreenVideo, |
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2623 void RenderProcessHostImpl::GetAudioOutputControllers( | 2624 void RenderProcessHostImpl::GetAudioOutputControllers( |
2624 const GetAudioOutputControllersCallback& callback) const { | 2625 const GetAudioOutputControllersCallback& callback) const { |
2625 audio_renderer_host()->GetOutputControllers(callback); | 2626 audio_renderer_host()->GetOutputControllers(callback); |
2626 } | 2627 } |
2627 | 2628 |
2628 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2629 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2629 return bluetooth_dispatcher_host_.get(); | 2630 return bluetooth_dispatcher_host_.get(); |
2630 } | 2631 } |
2631 | 2632 |
2632 } // namespace content | 2633 } // namespace content |
OLD | NEW |