| 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 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 switches::kUseMobileUserAgent, | 1412 switches::kUseMobileUserAgent, |
| 1413 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1413 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
| 1414 switches::kV, | 1414 switches::kV, |
| 1415 switches::kVideoThreads, | 1415 switches::kVideoThreads, |
| 1416 switches::kVideoUnderflowThresholdMs, | 1416 switches::kVideoUnderflowThresholdMs, |
| 1417 switches::kVModule, | 1417 switches::kVModule, |
| 1418 // Please keep these in alphabetical order. Compositor switches here should | 1418 // Please keep these in alphabetical order. Compositor switches here should |
| 1419 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1419 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1420 cc::switches::kDisableCachedPictureRaster, | 1420 cc::switches::kDisableCachedPictureRaster, |
| 1421 cc::switches::kDisableCompositedAntialiasing, | 1421 cc::switches::kDisableCompositedAntialiasing, |
| 1422 cc::switches::kDisableCompositorPropertyTrees, |
| 1422 cc::switches::kDisableMainFrameBeforeActivation, | 1423 cc::switches::kDisableMainFrameBeforeActivation, |
| 1423 cc::switches::kDisableThreadedAnimation, | 1424 cc::switches::kDisableThreadedAnimation, |
| 1424 cc::switches::kEnableBeginFrameScheduling, | 1425 cc::switches::kEnableBeginFrameScheduling, |
| 1425 cc::switches::kEnableCompositorPropertyTrees, | |
| 1426 cc::switches::kEnableGpuBenchmarking, | 1426 cc::switches::kEnableGpuBenchmarking, |
| 1427 cc::switches::kEnableMainFrameBeforeActivation, | 1427 cc::switches::kEnableMainFrameBeforeActivation, |
| 1428 cc::switches::kShowCompositedLayerBorders, | 1428 cc::switches::kShowCompositedLayerBorders, |
| 1429 cc::switches::kShowFPSCounter, | 1429 cc::switches::kShowFPSCounter, |
| 1430 cc::switches::kShowLayerAnimationBounds, | 1430 cc::switches::kShowLayerAnimationBounds, |
| 1431 cc::switches::kShowPropertyChangedRects, | 1431 cc::switches::kShowPropertyChangedRects, |
| 1432 cc::switches::kShowReplicaScreenSpaceRects, | 1432 cc::switches::kShowReplicaScreenSpaceRects, |
| 1433 cc::switches::kShowScreenSpaceRects, | 1433 cc::switches::kShowScreenSpaceRects, |
| 1434 cc::switches::kShowSurfaceDamageRects, | 1434 cc::switches::kShowSurfaceDamageRects, |
| 1435 cc::switches::kSlowDownRasterScaleFactor, | 1435 cc::switches::kSlowDownRasterScaleFactor, |
| (...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2637 void RenderProcessHostImpl::GetAudioOutputControllers( | 2637 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2638 const GetAudioOutputControllersCallback& callback) const { | 2638 const GetAudioOutputControllersCallback& callback) const { |
| 2639 audio_renderer_host()->GetOutputControllers(callback); | 2639 audio_renderer_host()->GetOutputControllers(callback); |
| 2640 } | 2640 } |
| 2641 | 2641 |
| 2642 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2642 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
| 2643 return bluetooth_dispatcher_host_.get(); | 2643 return bluetooth_dispatcher_host_.get(); |
| 2644 } | 2644 } |
| 2645 | 2645 |
| 2646 } // namespace content | 2646 } // namespace content |
| OLD | NEW |