| 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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1405 switches::kVideoThreads, | 1405 switches::kVideoThreads, |
| 1406 switches::kVideoUnderflowThresholdMs, | 1406 switches::kVideoUnderflowThresholdMs, |
| 1407 switches::kVModule, | 1407 switches::kVModule, |
| 1408 // Please keep these in alphabetical order. Compositor switches here should | 1408 // Please keep these in alphabetical order. Compositor switches here should |
| 1409 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1409 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1410 cc::switches::kDisableCachedPictureRaster, | 1410 cc::switches::kDisableCachedPictureRaster, |
| 1411 cc::switches::kDisableCompositedAntialiasing, | 1411 cc::switches::kDisableCompositedAntialiasing, |
| 1412 cc::switches::kDisableMainFrameBeforeActivation, | 1412 cc::switches::kDisableMainFrameBeforeActivation, |
| 1413 cc::switches::kDisableThreadedAnimation, | 1413 cc::switches::kDisableThreadedAnimation, |
| 1414 cc::switches::kEnableBeginFrameScheduling, | 1414 cc::switches::kEnableBeginFrameScheduling, |
| 1415 cc::switches::kEnableCompositorPropertyTrees, |
| 1415 cc::switches::kEnableGpuBenchmarking, | 1416 cc::switches::kEnableGpuBenchmarking, |
| 1416 cc::switches::kEnableMainFrameBeforeActivation, | 1417 cc::switches::kEnableMainFrameBeforeActivation, |
| 1417 cc::switches::kShowCompositedLayerBorders, | 1418 cc::switches::kShowCompositedLayerBorders, |
| 1418 cc::switches::kShowFPSCounter, | 1419 cc::switches::kShowFPSCounter, |
| 1419 cc::switches::kShowLayerAnimationBounds, | 1420 cc::switches::kShowLayerAnimationBounds, |
| 1420 cc::switches::kShowPropertyChangedRects, | 1421 cc::switches::kShowPropertyChangedRects, |
| 1421 cc::switches::kShowReplicaScreenSpaceRects, | 1422 cc::switches::kShowReplicaScreenSpaceRects, |
| 1422 cc::switches::kShowScreenSpaceRects, | 1423 cc::switches::kShowScreenSpaceRects, |
| 1423 cc::switches::kShowSurfaceDamageRects, | 1424 cc::switches::kShowSurfaceDamageRects, |
| 1424 cc::switches::kSlowDownRasterScaleFactor, | 1425 cc::switches::kSlowDownRasterScaleFactor, |
| (...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2624 void RenderProcessHostImpl::GetAudioOutputControllers( | 2625 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2625 const GetAudioOutputControllersCallback& callback) const { | 2626 const GetAudioOutputControllersCallback& callback) const { |
| 2626 audio_renderer_host()->GetOutputControllers(callback); | 2627 audio_renderer_host()->GetOutputControllers(callback); |
| 2627 } | 2628 } |
| 2628 | 2629 |
| 2629 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2630 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2630 return bluetooth_dispatcher_host_.get(); | 2631 return bluetooth_dispatcher_host_.get(); |
| 2631 } | 2632 } |
| 2632 | 2633 |
| 2633 } // namespace content | 2634 } // namespace content |
| OLD | NEW |