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 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1350 cc::switches::kShowFPSCounter, | 1350 cc::switches::kShowFPSCounter, |
1351 cc::switches::kShowLayerAnimationBounds, | 1351 cc::switches::kShowLayerAnimationBounds, |
1352 cc::switches::kShowPropertyChangedRects, | 1352 cc::switches::kShowPropertyChangedRects, |
1353 cc::switches::kShowReplicaScreenSpaceRects, | 1353 cc::switches::kShowReplicaScreenSpaceRects, |
1354 cc::switches::kShowScreenSpaceRects, | 1354 cc::switches::kShowScreenSpaceRects, |
1355 cc::switches::kShowSurfaceDamageRects, | 1355 cc::switches::kShowSurfaceDamageRects, |
1356 cc::switches::kSlowDownRasterScaleFactor, | 1356 cc::switches::kSlowDownRasterScaleFactor, |
1357 cc::switches::kStrictLayerPropertyChangeChecking, | 1357 cc::switches::kStrictLayerPropertyChangeChecking, |
1358 cc::switches::kTopControlsHideThreshold, | 1358 cc::switches::kTopControlsHideThreshold, |
1359 cc::switches::kTopControlsShowThreshold, | 1359 cc::switches::kTopControlsShowThreshold, |
1360 cc::switches::kDisableDisplayVsync, | |
brianderson
2015/06/24 01:16:45
Please group this one with kDisableGpuVsync since
Jimmy Jo
2015/06/24 09:38:31
Done.
| |
1361 cc::switches::kDisableCompositorVsync, | |
1360 | 1362 |
1361 scheduler::switches::kDisableBlinkScheduler, | 1363 scheduler::switches::kDisableBlinkScheduler, |
1362 | 1364 |
1363 #if defined(ENABLE_PLUGINS) | 1365 #if defined(ENABLE_PLUGINS) |
1364 switches::kEnablePepperTesting, | 1366 switches::kEnablePepperTesting, |
1365 #endif | 1367 #endif |
1366 #if defined(ENABLE_WEBRTC) | 1368 #if defined(ENABLE_WEBRTC) |
1367 switches::kDisableWebRtcHWDecoding, | 1369 switches::kDisableWebRtcHWDecoding, |
1368 switches::kDisableWebRtcHWEncoding, | 1370 switches::kDisableWebRtcHWEncoding, |
1369 switches::kEnableWebRtcDtls12, | 1371 switches::kEnableWebRtcDtls12, |
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2492 void RenderProcessHostImpl::GetAudioOutputControllers( | 2494 void RenderProcessHostImpl::GetAudioOutputControllers( |
2493 const GetAudioOutputControllersCallback& callback) const { | 2495 const GetAudioOutputControllersCallback& callback) const { |
2494 audio_renderer_host()->GetOutputControllers(callback); | 2496 audio_renderer_host()->GetOutputControllers(callback); |
2495 } | 2497 } |
2496 | 2498 |
2497 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2499 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2498 return bluetooth_dispatcher_host_.get(); | 2500 return bluetooth_dispatcher_host_.get(); |
2499 } | 2501 } |
2500 | 2502 |
2501 } // namespace content | 2503 } // namespace content |
OLD | NEW |