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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 switches::kForceDeviceScaleFactor, | 1304 switches::kForceDeviceScaleFactor, |
1305 switches::kForceDisplayList2dCanvas, | 1305 switches::kForceDisplayList2dCanvas, |
1306 switches::kFullMemoryCrashReport, | 1306 switches::kFullMemoryCrashReport, |
1307 switches::kIPCConnectionTimeout, | 1307 switches::kIPCConnectionTimeout, |
1308 switches::kJavaScriptFlags, | 1308 switches::kJavaScriptFlags, |
1309 switches::kLoggingLevel, | 1309 switches::kLoggingLevel, |
1310 switches::kMainFrameResizesAreOrientationChanges, | 1310 switches::kMainFrameResizesAreOrientationChanges, |
1311 switches::kMaxUntiledLayerWidth, | 1311 switches::kMaxUntiledLayerWidth, |
1312 switches::kMaxUntiledLayerHeight, | 1312 switches::kMaxUntiledLayerHeight, |
1313 switches::kMemoryMetrics, | 1313 switches::kMemoryMetrics, |
| 1314 switches::kMicrophonePositions, |
1314 switches::kNoReferrers, | 1315 switches::kNoReferrers, |
1315 switches::kNoSandbox, | 1316 switches::kNoSandbox, |
1316 switches::kOverridePluginPowerSaverForTesting, | 1317 switches::kOverridePluginPowerSaverForTesting, |
1317 switches::kPpapiInProcess, | 1318 switches::kPpapiInProcess, |
1318 switches::kProfilerTiming, | 1319 switches::kProfilerTiming, |
1319 switches::kReducedReferrerGranularity, | 1320 switches::kReducedReferrerGranularity, |
1320 switches::kReduceSecurityForTesting, | 1321 switches::kReduceSecurityForTesting, |
1321 switches::kRegisterPepperPlugins, | 1322 switches::kRegisterPepperPlugins, |
1322 switches::kRendererStartupDialog, | 1323 switches::kRendererStartupDialog, |
1323 switches::kRootLayerScrolls, | 1324 switches::kRootLayerScrolls, |
(...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2514 void RenderProcessHostImpl::GetAudioOutputControllers( | 2515 void RenderProcessHostImpl::GetAudioOutputControllers( |
2515 const GetAudioOutputControllersCallback& callback) const { | 2516 const GetAudioOutputControllersCallback& callback) const { |
2516 audio_renderer_host()->GetOutputControllers(callback); | 2517 audio_renderer_host()->GetOutputControllers(callback); |
2517 } | 2518 } |
2518 | 2519 |
2519 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2520 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2520 return bluetooth_dispatcher_host_.get(); | 2521 return bluetooth_dispatcher_host_.get(); |
2521 } | 2522 } |
2522 | 2523 |
2523 } // namespace content | 2524 } // namespace content |
OLD | NEW |