| 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 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1316 cc::switches::kDisableMainFrameBeforeActivation, | 1316 cc::switches::kDisableMainFrameBeforeActivation, |
| 1317 cc::switches::kDisableThreadedAnimation, | 1317 cc::switches::kDisableThreadedAnimation, |
| 1318 cc::switches::kEnableGpuBenchmarking, | 1318 cc::switches::kEnableGpuBenchmarking, |
| 1319 cc::switches::kEnableMainFrameBeforeActivation, | 1319 cc::switches::kEnableMainFrameBeforeActivation, |
| 1320 cc::switches::kEnableTopControlsPositionCalculation, | 1320 cc::switches::kEnableTopControlsPositionCalculation, |
| 1321 cc::switches::kMaxTilesForInterestArea, | 1321 cc::switches::kMaxTilesForInterestArea, |
| 1322 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, | 1322 cc::switches::kMaxUnusedResourceMemoryUsagePercentage, |
| 1323 cc::switches::kShowCompositedLayerBorders, | 1323 cc::switches::kShowCompositedLayerBorders, |
| 1324 cc::switches::kShowFPSCounter, | 1324 cc::switches::kShowFPSCounter, |
| 1325 cc::switches::kShowLayerAnimationBounds, | 1325 cc::switches::kShowLayerAnimationBounds, |
| 1326 cc::switches::kShowNonOccludingRects, | |
| 1327 cc::switches::kShowOccludingRects, | |
| 1328 cc::switches::kShowPropertyChangedRects, | 1326 cc::switches::kShowPropertyChangedRects, |
| 1329 cc::switches::kShowReplicaScreenSpaceRects, | 1327 cc::switches::kShowReplicaScreenSpaceRects, |
| 1330 cc::switches::kShowScreenSpaceRects, | 1328 cc::switches::kShowScreenSpaceRects, |
| 1331 cc::switches::kShowSurfaceDamageRects, | 1329 cc::switches::kShowSurfaceDamageRects, |
| 1332 cc::switches::kSlowDownRasterScaleFactor, | 1330 cc::switches::kSlowDownRasterScaleFactor, |
| 1333 cc::switches::kStrictLayerPropertyChangeChecking, | 1331 cc::switches::kStrictLayerPropertyChangeChecking, |
| 1334 cc::switches::kTopControlsHideThreshold, | 1332 cc::switches::kTopControlsHideThreshold, |
| 1335 cc::switches::kTopControlsShowThreshold, | 1333 cc::switches::kTopControlsShowThreshold, |
| 1336 #if defined(ENABLE_PLUGINS) | 1334 #if defined(ENABLE_PLUGINS) |
| 1337 switches::kEnablePepperTesting, | 1335 switches::kEnablePepperTesting, |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2398 if (worker_ref_count_ == 0) | 2396 if (worker_ref_count_ == 0) |
| 2399 Cleanup(); | 2397 Cleanup(); |
| 2400 } | 2398 } |
| 2401 | 2399 |
| 2402 void RenderProcessHostImpl::GetAudioOutputControllers( | 2400 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2403 const GetAudioOutputControllersCallback& callback) const { | 2401 const GetAudioOutputControllersCallback& callback) const { |
| 2404 audio_renderer_host()->GetOutputControllers(callback); | 2402 audio_renderer_host()->GetOutputControllers(callback); |
| 2405 } | 2403 } |
| 2406 | 2404 |
| 2407 } // namespace content | 2405 } // namespace content |
| OLD | NEW |