| 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 1467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1478 switches::kForceDeviceScaleFactor, | 1478 switches::kForceDeviceScaleFactor, |
| 1479 switches::kForceDisplayList2dCanvas, | 1479 switches::kForceDisplayList2dCanvas, |
| 1480 switches::kForceOverlayFullscreenVideo, | 1480 switches::kForceOverlayFullscreenVideo, |
| 1481 switches::kFullMemoryCrashReport, | 1481 switches::kFullMemoryCrashReport, |
| 1482 switches::kIPCConnectionTimeout, | 1482 switches::kIPCConnectionTimeout, |
| 1483 switches::kJavaScriptFlags, | 1483 switches::kJavaScriptFlags, |
| 1484 switches::kLoggingLevel, | 1484 switches::kLoggingLevel, |
| 1485 switches::kMainFrameResizesAreOrientationChanges, | 1485 switches::kMainFrameResizesAreOrientationChanges, |
| 1486 switches::kMaxUntiledLayerWidth, | 1486 switches::kMaxUntiledLayerWidth, |
| 1487 switches::kMaxUntiledLayerHeight, | 1487 switches::kMaxUntiledLayerHeight, |
| 1488 switches::kMemoryMetrics, | |
| 1489 switches::kMojoLocalStorage, | 1488 switches::kMojoLocalStorage, |
| 1490 switches::kNoReferrers, | 1489 switches::kNoReferrers, |
| 1491 switches::kNoSandbox, | 1490 switches::kNoSandbox, |
| 1492 switches::kOverridePluginPowerSaverForTesting, | 1491 switches::kOverridePluginPowerSaverForTesting, |
| 1493 switches::kPpapiInProcess, | 1492 switches::kPpapiInProcess, |
| 1494 switches::kProfilerTiming, | 1493 switches::kProfilerTiming, |
| 1495 switches::kReducedReferrerGranularity, | 1494 switches::kReducedReferrerGranularity, |
| 1496 switches::kReduceSecurityForTesting, | 1495 switches::kReduceSecurityForTesting, |
| 1497 switches::kRegisterPepperPlugins, | 1496 switches::kRegisterPepperPlugins, |
| 1498 switches::kRendererStartupDialog, | 1497 switches::kRendererStartupDialog, |
| (...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2790 void RenderProcessHostImpl::GetAudioOutputControllers( | 2789 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2791 const GetAudioOutputControllersCallback& callback) const { | 2790 const GetAudioOutputControllersCallback& callback) const { |
| 2792 audio_renderer_host()->GetOutputControllers(callback); | 2791 audio_renderer_host()->GetOutputControllers(callback); |
| 2793 } | 2792 } |
| 2794 | 2793 |
| 2795 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2794 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2796 return bluetooth_dispatcher_host_.get(); | 2795 return bluetooth_dispatcher_host_.get(); |
| 2797 } | 2796 } |
| 2798 | 2797 |
| 2799 } // namespace content | 2798 } // namespace content |
| OLD | NEW |