| 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 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 switches::kForceDisplayList2dCanvas, | 1313 switches::kForceDisplayList2dCanvas, |
| 1314 switches::kForceOverlayFullscreenVideo, | 1314 switches::kForceOverlayFullscreenVideo, |
| 1315 switches::kFullMemoryCrashReport, | 1315 switches::kFullMemoryCrashReport, |
| 1316 switches::kInertVisualViewport, | 1316 switches::kInertVisualViewport, |
| 1317 switches::kIPCConnectionTimeout, | 1317 switches::kIPCConnectionTimeout, |
| 1318 switches::kJavaScriptFlags, | 1318 switches::kJavaScriptFlags, |
| 1319 switches::kLoggingLevel, | 1319 switches::kLoggingLevel, |
| 1320 switches::kMainFrameResizesAreOrientationChanges, | 1320 switches::kMainFrameResizesAreOrientationChanges, |
| 1321 switches::kMaxUntiledLayerWidth, | 1321 switches::kMaxUntiledLayerWidth, |
| 1322 switches::kMaxUntiledLayerHeight, | 1322 switches::kMaxUntiledLayerHeight, |
| 1323 switches::kMediaUseMultibuffer, |
| 1323 switches::kMemoryMetrics, | 1324 switches::kMemoryMetrics, |
| 1324 switches::kNoReferrers, | 1325 switches::kNoReferrers, |
| 1325 switches::kNoSandbox, | 1326 switches::kNoSandbox, |
| 1326 switches::kOverridePluginPowerSaverForTesting, | 1327 switches::kOverridePluginPowerSaverForTesting, |
| 1327 switches::kPpapiInProcess, | 1328 switches::kPpapiInProcess, |
| 1328 switches::kProfilerTiming, | 1329 switches::kProfilerTiming, |
| 1329 switches::kReducedReferrerGranularity, | 1330 switches::kReducedReferrerGranularity, |
| 1330 switches::kReduceSecurityForTesting, | 1331 switches::kReduceSecurityForTesting, |
| 1331 switches::kRegisterPepperPlugins, | 1332 switches::kRegisterPepperPlugins, |
| 1332 switches::kRendererStartupDialog, | 1333 switches::kRendererStartupDialog, |
| (...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2534 void RenderProcessHostImpl::GetAudioOutputControllers( | 2535 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2535 const GetAudioOutputControllersCallback& callback) const { | 2536 const GetAudioOutputControllersCallback& callback) const { |
| 2536 audio_renderer_host()->GetOutputControllers(callback); | 2537 audio_renderer_host()->GetOutputControllers(callback); |
| 2537 } | 2538 } |
| 2538 | 2539 |
| 2539 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2540 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2540 return bluetooth_dispatcher_host_.get(); | 2541 return bluetooth_dispatcher_host_.get(); |
| 2541 } | 2542 } |
| 2542 | 2543 |
| 2543 } // namespace content | 2544 } // namespace content |
| OLD | NEW |