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 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 switches::kUseMobileUserAgent, | 1414 switches::kUseMobileUserAgent, |
1415 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1415 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
1416 switches::kV, | 1416 switches::kV, |
1417 switches::kVideoThreads, | 1417 switches::kVideoThreads, |
1418 switches::kVideoUnderflowThresholdMs, | 1418 switches::kVideoUnderflowThresholdMs, |
1419 switches::kVModule, | 1419 switches::kVModule, |
1420 // Please keep these in alphabetical order. Compositor switches here should | 1420 // Please keep these in alphabetical order. Compositor switches here should |
1421 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1421 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1422 cc::switches::kDisableCachedPictureRaster, | 1422 cc::switches::kDisableCachedPictureRaster, |
1423 cc::switches::kDisableCompositedAntialiasing, | 1423 cc::switches::kDisableCompositedAntialiasing, |
1424 cc::switches::kDisableCompositorPropertyTrees, | |
1425 cc::switches::kDisableMainFrameBeforeActivation, | 1424 cc::switches::kDisableMainFrameBeforeActivation, |
1426 cc::switches::kDisableThreadedAnimation, | 1425 cc::switches::kDisableThreadedAnimation, |
1427 cc::switches::kEnableBeginFrameScheduling, | 1426 cc::switches::kEnableBeginFrameScheduling, |
| 1427 cc::switches::kEnableCompositorPropertyTrees, |
1428 cc::switches::kEnableGpuBenchmarking, | 1428 cc::switches::kEnableGpuBenchmarking, |
1429 cc::switches::kEnableMainFrameBeforeActivation, | 1429 cc::switches::kEnableMainFrameBeforeActivation, |
1430 cc::switches::kShowCompositedLayerBorders, | 1430 cc::switches::kShowCompositedLayerBorders, |
1431 cc::switches::kShowFPSCounter, | 1431 cc::switches::kShowFPSCounter, |
1432 cc::switches::kShowLayerAnimationBounds, | 1432 cc::switches::kShowLayerAnimationBounds, |
1433 cc::switches::kShowPropertyChangedRects, | 1433 cc::switches::kShowPropertyChangedRects, |
1434 cc::switches::kShowReplicaScreenSpaceRects, | 1434 cc::switches::kShowReplicaScreenSpaceRects, |
1435 cc::switches::kShowScreenSpaceRects, | 1435 cc::switches::kShowScreenSpaceRects, |
1436 cc::switches::kShowSurfaceDamageRects, | 1436 cc::switches::kShowSurfaceDamageRects, |
1437 cc::switches::kSlowDownRasterScaleFactor, | 1437 cc::switches::kSlowDownRasterScaleFactor, |
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2608 void RenderProcessHostImpl::GetAudioOutputControllers( | 2608 void RenderProcessHostImpl::GetAudioOutputControllers( |
2609 const GetAudioOutputControllersCallback& callback) const { | 2609 const GetAudioOutputControllersCallback& callback) const { |
2610 audio_renderer_host()->GetOutputControllers(callback); | 2610 audio_renderer_host()->GetOutputControllers(callback); |
2611 } | 2611 } |
2612 | 2612 |
2613 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2613 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2614 return bluetooth_dispatcher_host_.get(); | 2614 return bluetooth_dispatcher_host_.get(); |
2615 } | 2615 } |
2616 | 2616 |
2617 } // namespace content | 2617 } // namespace content |
OLD | NEW |