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