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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 switches::kVModule, | 1341 switches::kVModule, |
1342 // Please keep these in alphabetical order. Compositor switches here should | 1342 // Please keep these in alphabetical order. Compositor switches here should |
1343 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1343 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1344 cc::switches::kCompositeToMailbox, | 1344 cc::switches::kCompositeToMailbox, |
1345 cc::switches::kDisableCompositedAntialiasing, | 1345 cc::switches::kDisableCompositedAntialiasing, |
1346 cc::switches::kDisableMainFrameBeforeActivation, | 1346 cc::switches::kDisableMainFrameBeforeActivation, |
1347 cc::switches::kDisableThreadedAnimation, | 1347 cc::switches::kDisableThreadedAnimation, |
1348 cc::switches::kEnableBeginFrameScheduling, | 1348 cc::switches::kEnableBeginFrameScheduling, |
1349 cc::switches::kEnableGpuBenchmarking, | 1349 cc::switches::kEnableGpuBenchmarking, |
1350 cc::switches::kEnableMainFrameBeforeActivation, | 1350 cc::switches::kEnableMainFrameBeforeActivation, |
| 1351 cc::switches::kEnableTileCompression, |
1351 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1352 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
1352 cc::switches::kShowCompositedLayerBorders, | 1353 cc::switches::kShowCompositedLayerBorders, |
1353 cc::switches::kShowFPSCounter, | 1354 cc::switches::kShowFPSCounter, |
1354 cc::switches::kShowLayerAnimationBounds, | 1355 cc::switches::kShowLayerAnimationBounds, |
1355 cc::switches::kShowPropertyChangedRects, | 1356 cc::switches::kShowPropertyChangedRects, |
1356 cc::switches::kShowReplicaScreenSpaceRects, | 1357 cc::switches::kShowReplicaScreenSpaceRects, |
1357 cc::switches::kShowScreenSpaceRects, | 1358 cc::switches::kShowScreenSpaceRects, |
1358 cc::switches::kShowSurfaceDamageRects, | 1359 cc::switches::kShowSurfaceDamageRects, |
1359 cc::switches::kSlowDownRasterScaleFactor, | 1360 cc::switches::kSlowDownRasterScaleFactor, |
1360 cc::switches::kStrictLayerPropertyChangeChecking, | 1361 cc::switches::kStrictLayerPropertyChangeChecking, |
(...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2503 void RenderProcessHostImpl::GetAudioOutputControllers( | 2504 void RenderProcessHostImpl::GetAudioOutputControllers( |
2504 const GetAudioOutputControllersCallback& callback) const { | 2505 const GetAudioOutputControllersCallback& callback) const { |
2505 audio_renderer_host()->GetOutputControllers(callback); | 2506 audio_renderer_host()->GetOutputControllers(callback); |
2506 } | 2507 } |
2507 | 2508 |
2508 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { | 2509 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { |
2509 return bluetooth_dispatcher_host_.get(); | 2510 return bluetooth_dispatcher_host_.get(); |
2510 } | 2511 } |
2511 | 2512 |
2512 } // namespace content | 2513 } // namespace content |
OLD | NEW |