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 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 switches::kUseMobileUserAgent, | 1438 switches::kUseMobileUserAgent, |
1439 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1439 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
1440 switches::kV, | 1440 switches::kV, |
1441 switches::kVideoThreads, | 1441 switches::kVideoThreads, |
1442 switches::kVideoUnderflowThresholdMs, | 1442 switches::kVideoUnderflowThresholdMs, |
1443 switches::kVModule, | 1443 switches::kVModule, |
1444 // Please keep these in alphabetical order. Compositor switches here should | 1444 // Please keep these in alphabetical order. Compositor switches here should |
1445 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1445 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1446 cc::switches::kDisableCachedPictureRaster, | 1446 cc::switches::kDisableCachedPictureRaster, |
1447 cc::switches::kDisableCompositedAntialiasing, | 1447 cc::switches::kDisableCompositedAntialiasing, |
| 1448 cc::switches::kDisableCompositorPropertyTrees, |
1448 cc::switches::kDisableMainFrameBeforeActivation, | 1449 cc::switches::kDisableMainFrameBeforeActivation, |
1449 cc::switches::kDisableThreadedAnimation, | 1450 cc::switches::kDisableThreadedAnimation, |
1450 cc::switches::kEnableBeginFrameScheduling, | 1451 cc::switches::kEnableBeginFrameScheduling, |
1451 cc::switches::kEnableCompositorPropertyTrees, | |
1452 cc::switches::kEnableGpuBenchmarking, | 1452 cc::switches::kEnableGpuBenchmarking, |
1453 cc::switches::kEnableMainFrameBeforeActivation, | 1453 cc::switches::kEnableMainFrameBeforeActivation, |
1454 cc::switches::kShowCompositedLayerBorders, | 1454 cc::switches::kShowCompositedLayerBorders, |
1455 cc::switches::kShowFPSCounter, | 1455 cc::switches::kShowFPSCounter, |
1456 cc::switches::kShowLayerAnimationBounds, | 1456 cc::switches::kShowLayerAnimationBounds, |
1457 cc::switches::kShowPropertyChangedRects, | 1457 cc::switches::kShowPropertyChangedRects, |
1458 cc::switches::kShowReplicaScreenSpaceRects, | 1458 cc::switches::kShowReplicaScreenSpaceRects, |
1459 cc::switches::kShowScreenSpaceRects, | 1459 cc::switches::kShowScreenSpaceRects, |
1460 cc::switches::kShowSurfaceDamageRects, | 1460 cc::switches::kShowSurfaceDamageRects, |
1461 cc::switches::kSlowDownRasterScaleFactor, | 1461 cc::switches::kSlowDownRasterScaleFactor, |
(...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2662 void RenderProcessHostImpl::GetAudioOutputControllers( | 2662 void RenderProcessHostImpl::GetAudioOutputControllers( |
2663 const GetAudioOutputControllersCallback& callback) const { | 2663 const GetAudioOutputControllersCallback& callback) const { |
2664 audio_renderer_host()->GetOutputControllers(callback); | 2664 audio_renderer_host()->GetOutputControllers(callback); |
2665 } | 2665 } |
2666 | 2666 |
2667 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2667 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2668 return bluetooth_dispatcher_host_.get(); | 2668 return bluetooth_dispatcher_host_.get(); |
2669 } | 2669 } |
2670 | 2670 |
2671 } // namespace content | 2671 } // namespace content |
OLD | NEW |