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 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1294 switches::kVideoThreads, | 1294 switches::kVideoThreads, |
1295 switches::kVModule, | 1295 switches::kVModule, |
1296 // Please keep these in alphabetical order. Compositor switches here should | 1296 // Please keep these in alphabetical order. Compositor switches here should |
1297 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1297 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1298 cc::switches::kCompositeToMailbox, | 1298 cc::switches::kCompositeToMailbox, |
1299 cc::switches::kDisableCompositedAntialiasing, | 1299 cc::switches::kDisableCompositedAntialiasing, |
1300 cc::switches::kDisableMainFrameBeforeActivation, | 1300 cc::switches::kDisableMainFrameBeforeActivation, |
1301 cc::switches::kDisableThreadedAnimation, | 1301 cc::switches::kDisableThreadedAnimation, |
1302 cc::switches::kEnableGpuBenchmarking, | 1302 cc::switches::kEnableGpuBenchmarking, |
1303 cc::switches::kEnableMainFrameBeforeActivation, | 1303 cc::switches::kEnableMainFrameBeforeActivation, |
1304 cc::switches::kEnableTopControlsPositionCalculation, | |
1305 cc::switches::kMaxTilesForInterestArea, | 1304 cc::switches::kMaxTilesForInterestArea, |
1306 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1305 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
1307 cc::switches::kShowCompositedLayerBorders, | 1306 cc::switches::kShowCompositedLayerBorders, |
1308 cc::switches::kShowFPSCounter, | 1307 cc::switches::kShowFPSCounter, |
1309 cc::switches::kShowLayerAnimationBounds, | 1308 cc::switches::kShowLayerAnimationBounds, |
1310 cc::switches::kShowPropertyChangedRects, | 1309 cc::switches::kShowPropertyChangedRects, |
1311 cc::switches::kShowReplicaScreenSpaceRects, | 1310 cc::switches::kShowReplicaScreenSpaceRects, |
1312 cc::switches::kShowScreenSpaceRects, | 1311 cc::switches::kShowScreenSpaceRects, |
1313 cc::switches::kShowSurfaceDamageRects, | 1312 cc::switches::kShowSurfaceDamageRects, |
1314 cc::switches::kSlowDownRasterScaleFactor, | 1313 cc::switches::kSlowDownRasterScaleFactor, |
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2390 if (worker_ref_count_ == 0) | 2389 if (worker_ref_count_ == 0) |
2391 Cleanup(); | 2390 Cleanup(); |
2392 } | 2391 } |
2393 | 2392 |
2394 void RenderProcessHostImpl::GetAudioOutputControllers( | 2393 void RenderProcessHostImpl::GetAudioOutputControllers( |
2395 const GetAudioOutputControllersCallback& callback) const { | 2394 const GetAudioOutputControllersCallback& callback) const { |
2396 audio_renderer_host()->GetOutputControllers(callback); | 2395 audio_renderer_host()->GetOutputControllers(callback); |
2397 } | 2396 } |
2398 | 2397 |
2399 } // namespace content | 2398 } // namespace content |
OLD | NEW |