| 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 switches::kEnableVtune, | 1335 switches::kEnableVtune, |
| 1336 switches::kEnableWebBluetooth, | 1336 switches::kEnableWebBluetooth, |
| 1337 switches::kEnableWebGLDraftExtensions, | 1337 switches::kEnableWebGLDraftExtensions, |
| 1338 switches::kEnableWebGLImageChromium, | 1338 switches::kEnableWebGLImageChromium, |
| 1339 switches::kEnableWebVR, | 1339 switches::kEnableWebVR, |
| 1340 switches::kExplicitlyAllowedPorts, | 1340 switches::kExplicitlyAllowedPorts, |
| 1341 switches::kForceDeviceScaleFactor, | 1341 switches::kForceDeviceScaleFactor, |
| 1342 switches::kForceDisplayList2dCanvas, | 1342 switches::kForceDisplayList2dCanvas, |
| 1343 switches::kForceOverlayFullscreenVideo, | 1343 switches::kForceOverlayFullscreenVideo, |
| 1344 switches::kFullMemoryCrashReport, | 1344 switches::kFullMemoryCrashReport, |
| 1345 switches::kInertVisualViewport, |
| 1345 switches::kIPCConnectionTimeout, | 1346 switches::kIPCConnectionTimeout, |
| 1346 switches::kJavaScriptFlags, | 1347 switches::kJavaScriptFlags, |
| 1347 switches::kLoggingLevel, | 1348 switches::kLoggingLevel, |
| 1348 switches::kMainFrameResizesAreOrientationChanges, | 1349 switches::kMainFrameResizesAreOrientationChanges, |
| 1349 switches::kMaxUntiledLayerWidth, | 1350 switches::kMaxUntiledLayerWidth, |
| 1350 switches::kMaxUntiledLayerHeight, | 1351 switches::kMaxUntiledLayerHeight, |
| 1351 switches::kMemoryMetrics, | 1352 switches::kMemoryMetrics, |
| 1352 switches::kNoReferrers, | 1353 switches::kNoReferrers, |
| 1353 switches::kNoSandbox, | 1354 switches::kNoSandbox, |
| 1354 switches::kOverridePluginPowerSaverForTesting, | 1355 switches::kOverridePluginPowerSaverForTesting, |
| (...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2560 void RenderProcessHostImpl::GetAudioOutputControllers( | 2561 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2561 const GetAudioOutputControllersCallback& callback) const { | 2562 const GetAudioOutputControllersCallback& callback) const { |
| 2562 audio_renderer_host()->GetOutputControllers(callback); | 2563 audio_renderer_host()->GetOutputControllers(callback); |
| 2563 } | 2564 } |
| 2564 | 2565 |
| 2565 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2566 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2566 return bluetooth_dispatcher_host_.get(); | 2567 return bluetooth_dispatcher_host_.get(); |
| 2567 } | 2568 } |
| 2568 | 2569 |
| 2569 } // namespace content | 2570 } // namespace content |
| OLD | NEW |