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 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1317 switches::kVideoThreads, | 1317 switches::kVideoThreads, |
1318 switches::kVModule, | 1318 switches::kVModule, |
1319 // Please keep these in alphabetical order. Compositor switches here should | 1319 // Please keep these in alphabetical order. Compositor switches here should |
1320 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. | 1320 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. |
1321 cc::switches::kCompositeToMailbox, | 1321 cc::switches::kCompositeToMailbox, |
1322 cc::switches::kDisableCompositedAntialiasing, | 1322 cc::switches::kDisableCompositedAntialiasing, |
1323 cc::switches::kDisableMainFrameBeforeActivation, | 1323 cc::switches::kDisableMainFrameBeforeActivation, |
1324 cc::switches::kDisableThreadedAnimation, | 1324 cc::switches::kDisableThreadedAnimation, |
1325 cc::switches::kEnableGpuBenchmarking, | 1325 cc::switches::kEnableGpuBenchmarking, |
1326 cc::switches::kEnableMainFrameBeforeActivation, | 1326 cc::switches::kEnableMainFrameBeforeActivation, |
1327 cc::switches::kEnableTopControlsPositionCalculation, | |
1328 cc::switches::kMaxTilesForInterestArea, | 1327 cc::switches::kMaxTilesForInterestArea, |
1329 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1328 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
1330 cc::switches::kShowCompositedLayerBorders, | 1329 cc::switches::kShowCompositedLayerBorders, |
1331 cc::switches::kShowFPSCounter, | 1330 cc::switches::kShowFPSCounter, |
1332 cc::switches::kShowLayerAnimationBounds, | 1331 cc::switches::kShowLayerAnimationBounds, |
1333 cc::switches::kShowPropertyChangedRects, | 1332 cc::switches::kShowPropertyChangedRects, |
1334 cc::switches::kShowReplicaScreenSpaceRects, | 1333 cc::switches::kShowReplicaScreenSpaceRects, |
1335 cc::switches::kShowScreenSpaceRects, | 1334 cc::switches::kShowScreenSpaceRects, |
1336 cc::switches::kShowSurfaceDamageRects, | 1335 cc::switches::kShowSurfaceDamageRects, |
1337 cc::switches::kSlowDownRasterScaleFactor, | 1336 cc::switches::kSlowDownRasterScaleFactor, |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2410 if (worker_ref_count_ == 0) | 2409 if (worker_ref_count_ == 0) |
2411 Cleanup(); | 2410 Cleanup(); |
2412 } | 2411 } |
2413 | 2412 |
2414 void RenderProcessHostImpl::GetAudioOutputControllers( | 2413 void RenderProcessHostImpl::GetAudioOutputControllers( |
2415 const GetAudioOutputControllersCallback& callback) const { | 2414 const GetAudioOutputControllersCallback& callback) const { |
2416 audio_renderer_host()->GetOutputControllers(callback); | 2415 audio_renderer_host()->GetOutputControllers(callback); |
2417 } | 2416 } |
2418 | 2417 |
2419 } // namespace content | 2418 } // namespace content |
OLD | NEW |