| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1301 switches::kVideoThreads, | 1301 switches::kVideoThreads, |
| 1302 switches::kVModule, | 1302 switches::kVModule, |
| 1303 // Please keep these in alphabetical order. Compositor switches here should | 1303 // Please keep these in alphabetical order. Compositor switches here should |
| 1304 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1304 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
| 1305 cc::switches::kCompositeToMailbox, | 1305 cc::switches::kCompositeToMailbox, |
| 1306 cc::switches::kDisableCompositedAntialiasing, | 1306 cc::switches::kDisableCompositedAntialiasing, |
| 1307 cc::switches::kDisableMainFrameBeforeActivation, | 1307 cc::switches::kDisableMainFrameBeforeActivation, |
| 1308 cc::switches::kDisableThreadedAnimation, | 1308 cc::switches::kDisableThreadedAnimation, |
| 1309 cc::switches::kEnableGpuBenchmarking, | 1309 cc::switches::kEnableGpuBenchmarking, |
| 1310 cc::switches::kEnableMainFrameBeforeActivation, | 1310 cc::switches::kEnableMainFrameBeforeActivation, |
| 1311 cc::switches::kEnableTopControlsPositionCalculation, |
| 1311 cc::switches::kMaxTilesForInterestArea, | 1312 cc::switches::kMaxTilesForInterestArea, |
| 1312 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1313 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
| 1313 cc::switches::kShowCompositedLayerBorders, | 1314 cc::switches::kShowCompositedLayerBorders, |
| 1314 cc::switches::kShowFPSCounter, | 1315 cc::switches::kShowFPSCounter, |
| 1315 cc::switches::kShowLayerAnimationBounds, | 1316 cc::switches::kShowLayerAnimationBounds, |
| 1316 cc::switches::kShowPropertyChangedRects, | 1317 cc::switches::kShowPropertyChangedRects, |
| 1317 cc::switches::kShowReplicaScreenSpaceRects, | 1318 cc::switches::kShowReplicaScreenSpaceRects, |
| 1318 cc::switches::kShowScreenSpaceRects, | 1319 cc::switches::kShowScreenSpaceRects, |
| 1319 cc::switches::kShowSurfaceDamageRects, | 1320 cc::switches::kShowSurfaceDamageRects, |
| 1320 cc::switches::kSlowDownRasterScaleFactor, | 1321 cc::switches::kSlowDownRasterScaleFactor, |
| (...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2396 if (worker_ref_count_ == 0) | 2397 if (worker_ref_count_ == 0) |
| 2397 Cleanup(); | 2398 Cleanup(); |
| 2398 } | 2399 } |
| 2399 | 2400 |
| 2400 void RenderProcessHostImpl::GetAudioOutputControllers( | 2401 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2401 const GetAudioOutputControllersCallback& callback) const { | 2402 const GetAudioOutputControllersCallback& callback) const { |
| 2402 audio_renderer_host()->GetOutputControllers(callback); | 2403 audio_renderer_host()->GetOutputControllers(callback); |
| 2403 } | 2404 } |
| 2404 | 2405 |
| 2405 } // namespace content | 2406 } // namespace content |
| OLD | NEW |