| 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 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1516     cc::switches::kShowLayerAnimationBounds, | 1516     cc::switches::kShowLayerAnimationBounds, | 
| 1517     cc::switches::kShowPropertyChangedRects, | 1517     cc::switches::kShowPropertyChangedRects, | 
| 1518     cc::switches::kShowReplicaScreenSpaceRects, | 1518     cc::switches::kShowReplicaScreenSpaceRects, | 
| 1519     cc::switches::kShowScreenSpaceRects, | 1519     cc::switches::kShowScreenSpaceRects, | 
| 1520     cc::switches::kShowSurfaceDamageRects, | 1520     cc::switches::kShowSurfaceDamageRects, | 
| 1521     cc::switches::kSlowDownRasterScaleFactor, | 1521     cc::switches::kSlowDownRasterScaleFactor, | 
| 1522     cc::switches::kStrictLayerPropertyChangeChecking, | 1522     cc::switches::kStrictLayerPropertyChangeChecking, | 
| 1523     cc::switches::kTopControlsHideThreshold, | 1523     cc::switches::kTopControlsHideThreshold, | 
| 1524     cc::switches::kTopControlsShowThreshold, | 1524     cc::switches::kTopControlsShowThreshold, | 
| 1525 | 1525 | 
| 1526     scheduler::switches::kEnableVirtualizedTime, |  | 
| 1527     scheduler::switches::kDisableBackgroundTimerThrottling, | 1526     scheduler::switches::kDisableBackgroundTimerThrottling, | 
| 1528 | 1527 | 
| 1529 #if defined(ENABLE_PLUGINS) | 1528 #if defined(ENABLE_PLUGINS) | 
| 1530     switches::kEnablePepperTesting, | 1529     switches::kEnablePepperTesting, | 
| 1531 #endif | 1530 #endif | 
| 1532 #if defined(ENABLE_WEBRTC) | 1531 #if defined(ENABLE_WEBRTC) | 
| 1533     switches::kDisableWebRtcHWDecoding, | 1532     switches::kDisableWebRtcHWDecoding, | 
| 1534     switches::kDisableWebRtcHWEncoding, | 1533     switches::kDisableWebRtcHWEncoding, | 
| 1535     switches::kEnableWebRtcDtls12, | 1534     switches::kEnableWebRtcDtls12, | 
| 1536     switches::kEnableWebRtcHWH264Encoding, | 1535     switches::kEnableWebRtcHWH264Encoding, | 
| (...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2797 void RenderProcessHostImpl::GetAudioOutputControllers( | 2796 void RenderProcessHostImpl::GetAudioOutputControllers( | 
| 2798     const GetAudioOutputControllersCallback& callback) const { | 2797     const GetAudioOutputControllersCallback& callback) const { | 
| 2799   audio_renderer_host()->GetOutputControllers(callback); | 2798   audio_renderer_host()->GetOutputControllers(callback); | 
| 2800 } | 2799 } | 
| 2801 | 2800 | 
| 2802 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2801 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 
| 2803   return bluetooth_dispatcher_host_.get(); | 2802   return bluetooth_dispatcher_host_.get(); | 
| 2804 } | 2803 } | 
| 2805 | 2804 | 
| 2806 }  // namespace content | 2805 }  // namespace content | 
| OLD | NEW | 
|---|