| 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 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 // Please keep these in alphabetical order. Compositor switches here should | 1425 // Please keep these in alphabetical order. Compositor switches here should |
| 1426 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1426 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1427 cc::switches::kDisableCachedPictureRaster, | 1427 cc::switches::kDisableCachedPictureRaster, |
| 1428 cc::switches::kDisableCompositedAntialiasing, | 1428 cc::switches::kDisableCompositedAntialiasing, |
| 1429 cc::switches::kDisableMainFrameBeforeActivation, | 1429 cc::switches::kDisableMainFrameBeforeActivation, |
| 1430 cc::switches::kDisableThreadedAnimation, | 1430 cc::switches::kDisableThreadedAnimation, |
| 1431 cc::switches::kEnableBeginFrameScheduling, | 1431 cc::switches::kEnableBeginFrameScheduling, |
| 1432 cc::switches::kEnableCompositorPropertyTrees, | 1432 cc::switches::kEnableCompositorPropertyTrees, |
| 1433 cc::switches::kEnableGpuBenchmarking, | 1433 cc::switches::kEnableGpuBenchmarking, |
| 1434 cc::switches::kEnableMainFrameBeforeActivation, | 1434 cc::switches::kEnableMainFrameBeforeActivation, |
| 1435 cc::switches::kEnableTileCompression, |
| 1435 cc::switches::kShowCompositedLayerBorders, | 1436 cc::switches::kShowCompositedLayerBorders, |
| 1436 cc::switches::kShowFPSCounter, | 1437 cc::switches::kShowFPSCounter, |
| 1437 cc::switches::kShowLayerAnimationBounds, | 1438 cc::switches::kShowLayerAnimationBounds, |
| 1438 cc::switches::kShowPropertyChangedRects, | 1439 cc::switches::kShowPropertyChangedRects, |
| 1439 cc::switches::kShowReplicaScreenSpaceRects, | 1440 cc::switches::kShowReplicaScreenSpaceRects, |
| 1440 cc::switches::kShowScreenSpaceRects, | 1441 cc::switches::kShowScreenSpaceRects, |
| 1441 cc::switches::kShowSurfaceDamageRects, | 1442 cc::switches::kShowSurfaceDamageRects, |
| 1442 cc::switches::kSlowDownRasterScaleFactor, | 1443 cc::switches::kSlowDownRasterScaleFactor, |
| 1443 cc::switches::kStrictLayerPropertyChangeChecking, | 1444 cc::switches::kStrictLayerPropertyChangeChecking, |
| 1444 cc::switches::kTopControlsHideThreshold, | 1445 cc::switches::kTopControlsHideThreshold, |
| (...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2631 void RenderProcessHostImpl::GetAudioOutputControllers( | 2632 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2632 const GetAudioOutputControllersCallback& callback) const { | 2633 const GetAudioOutputControllersCallback& callback) const { |
| 2633 audio_renderer_host()->GetOutputControllers(callback); | 2634 audio_renderer_host()->GetOutputControllers(callback); |
| 2634 } | 2635 } |
| 2635 | 2636 |
| 2636 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2637 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2637 return bluetooth_dispatcher_host_.get(); | 2638 return bluetooth_dispatcher_host_.get(); |
| 2638 } | 2639 } |
| 2639 | 2640 |
| 2640 } // namespace content | 2641 } // namespace content |
| OLD | NEW |