| 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 1444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1455 cc::switches::kEnableBeginFrameScheduling, | 1455 cc::switches::kEnableBeginFrameScheduling, |
| 1456 cc::switches::kEnableGpuBenchmarking, | 1456 cc::switches::kEnableGpuBenchmarking, |
| 1457 cc::switches::kEnableMainFrameBeforeActivation, | 1457 cc::switches::kEnableMainFrameBeforeActivation, |
| 1458 cc::switches::kShowCompositedLayerBorders, | 1458 cc::switches::kShowCompositedLayerBorders, |
| 1459 cc::switches::kShowLayerAnimationBounds, | 1459 cc::switches::kShowLayerAnimationBounds, |
| 1460 cc::switches::kShowPropertyChangedRects, | 1460 cc::switches::kShowPropertyChangedRects, |
| 1461 cc::switches::kShowReplicaScreenSpaceRects, | 1461 cc::switches::kShowReplicaScreenSpaceRects, |
| 1462 cc::switches::kShowScreenSpaceRects, | 1462 cc::switches::kShowScreenSpaceRects, |
| 1463 cc::switches::kShowSurfaceDamageRects, | 1463 cc::switches::kShowSurfaceDamageRects, |
| 1464 cc::switches::kSlowDownRasterScaleFactor, | 1464 cc::switches::kSlowDownRasterScaleFactor, |
| 1465 cc::switches::kStrictLayerPropertyChangeChecking, | |
| 1466 cc::switches::kTopControlsHideThreshold, | 1465 cc::switches::kTopControlsHideThreshold, |
| 1467 cc::switches::kTopControlsShowThreshold, | 1466 cc::switches::kTopControlsShowThreshold, |
| 1468 | 1467 |
| 1469 scheduler::switches::kEnableVirtualizedTime, | 1468 scheduler::switches::kEnableVirtualizedTime, |
| 1470 scheduler::switches::kDisableBackgroundTimerThrottling, | 1469 scheduler::switches::kDisableBackgroundTimerThrottling, |
| 1471 | 1470 |
| 1472 #if defined(ENABLE_PLUGINS) | 1471 #if defined(ENABLE_PLUGINS) |
| 1473 switches::kEnablePepperTesting, | 1472 switches::kEnablePepperTesting, |
| 1474 #endif | 1473 #endif |
| 1475 #if defined(ENABLE_WEBRTC) | 1474 #if defined(ENABLE_WEBRTC) |
| (...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2670 void RenderProcessHostImpl::GetAudioOutputControllers( | 2669 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2671 const GetAudioOutputControllersCallback& callback) const { | 2670 const GetAudioOutputControllersCallback& callback) const { |
| 2672 audio_renderer_host()->GetOutputControllers(callback); | 2671 audio_renderer_host()->GetOutputControllers(callback); |
| 2673 } | 2672 } |
| 2674 | 2673 |
| 2675 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2674 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2676 return bluetooth_dispatcher_host_.get(); | 2675 return bluetooth_dispatcher_host_.get(); |
| 2677 } | 2676 } |
| 2678 | 2677 |
| 2679 } // namespace content | 2678 } // namespace content |
| OLD | NEW |