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 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1378 switches::kVideoUnderflowThresholdMs, | 1378 switches::kVideoUnderflowThresholdMs, |
1379 switches::kVModule, | 1379 switches::kVModule, |
1380 // Please keep these in alphabetical order. Compositor switches here should | 1380 // Please keep these in alphabetical order. Compositor switches here should |
1381 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1381 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1382 cc::switches::kDisableCompositedAntialiasing, | 1382 cc::switches::kDisableCompositedAntialiasing, |
1383 cc::switches::kDisableMainFrameBeforeActivation, | 1383 cc::switches::kDisableMainFrameBeforeActivation, |
1384 cc::switches::kDisableThreadedAnimation, | 1384 cc::switches::kDisableThreadedAnimation, |
1385 cc::switches::kEnableBeginFrameScheduling, | 1385 cc::switches::kEnableBeginFrameScheduling, |
1386 cc::switches::kEnableGpuBenchmarking, | 1386 cc::switches::kEnableGpuBenchmarking, |
1387 cc::switches::kEnableMainFrameBeforeActivation, | 1387 cc::switches::kEnableMainFrameBeforeActivation, |
| 1388 cc::switches::kEnableTileCompression, |
1388 cc::switches::kShowCompositedLayerBorders, | 1389 cc::switches::kShowCompositedLayerBorders, |
1389 cc::switches::kShowFPSCounter, | 1390 cc::switches::kShowFPSCounter, |
1390 cc::switches::kShowLayerAnimationBounds, | 1391 cc::switches::kShowLayerAnimationBounds, |
1391 cc::switches::kShowPropertyChangedRects, | 1392 cc::switches::kShowPropertyChangedRects, |
1392 cc::switches::kShowReplicaScreenSpaceRects, | 1393 cc::switches::kShowReplicaScreenSpaceRects, |
1393 cc::switches::kShowScreenSpaceRects, | 1394 cc::switches::kShowScreenSpaceRects, |
1394 cc::switches::kShowSurfaceDamageRects, | 1395 cc::switches::kShowSurfaceDamageRects, |
1395 cc::switches::kSlowDownRasterScaleFactor, | 1396 cc::switches::kSlowDownRasterScaleFactor, |
1396 cc::switches::kStrictLayerPropertyChangeChecking, | 1397 cc::switches::kStrictLayerPropertyChangeChecking, |
1397 cc::switches::kTopControlsHideThreshold, | 1398 cc::switches::kTopControlsHideThreshold, |
(...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2561 void RenderProcessHostImpl::GetAudioOutputControllers( | 2562 void RenderProcessHostImpl::GetAudioOutputControllers( |
2562 const GetAudioOutputControllersCallback& callback) const { | 2563 const GetAudioOutputControllersCallback& callback) const { |
2563 audio_renderer_host()->GetOutputControllers(callback); | 2564 audio_renderer_host()->GetOutputControllers(callback); |
2564 } | 2565 } |
2565 | 2566 |
2566 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2567 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2567 return bluetooth_dispatcher_host_.get(); | 2568 return bluetooth_dispatcher_host_.get(); |
2568 } | 2569 } |
2569 | 2570 |
2570 } // namespace content | 2571 } // namespace content |
OLD | NEW |