| 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 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 switches::kReducedReferrerGranularity, | 1318 switches::kReducedReferrerGranularity, |
| 1319 switches::kReduceSecurityForTesting, | 1319 switches::kReduceSecurityForTesting, |
| 1320 switches::kRegisterPepperPlugins, | 1320 switches::kRegisterPepperPlugins, |
| 1321 switches::kRendererStartupDialog, | 1321 switches::kRendererStartupDialog, |
| 1322 switches::kRootLayerScrolls, | 1322 switches::kRootLayerScrolls, |
| 1323 switches::kShowPaintRects, | 1323 switches::kShowPaintRects, |
| 1324 switches::kSitePerProcess, | 1324 switches::kSitePerProcess, |
| 1325 switches::kStatsCollectionController, | 1325 switches::kStatsCollectionController, |
| 1326 switches::kTestType, | 1326 switches::kTestType, |
| 1327 switches::kTouchEvents, | 1327 switches::kTouchEvents, |
| 1328 switches::kTouchTextSelectionStrategy, |
| 1328 switches::kTraceToConsole, | 1329 switches::kTraceToConsole, |
| 1329 // This flag needs to be propagated to the renderer process for | 1330 // This flag needs to be propagated to the renderer process for |
| 1330 // --in-process-webgl. | 1331 // --in-process-webgl. |
| 1331 switches::kUseGL, | 1332 switches::kUseGL, |
| 1332 switches::kUseMobileUserAgent, | 1333 switches::kUseMobileUserAgent, |
| 1333 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1334 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
| 1334 switches::kV, | 1335 switches::kV, |
| 1335 switches::kVideoThreads, | 1336 switches::kVideoThreads, |
| 1336 switches::kVideoUnderflowThresholdMs, | 1337 switches::kVideoUnderflowThresholdMs, |
| 1337 switches::kVModule, | 1338 switches::kVModule, |
| (...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2480 if (worker_ref_count_ == 0) | 2481 if (worker_ref_count_ == 0) |
| 2481 Cleanup(); | 2482 Cleanup(); |
| 2482 } | 2483 } |
| 2483 | 2484 |
| 2484 void RenderProcessHostImpl::GetAudioOutputControllers( | 2485 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2485 const GetAudioOutputControllersCallback& callback) const { | 2486 const GetAudioOutputControllersCallback& callback) const { |
| 2486 audio_renderer_host()->GetOutputControllers(callback); | 2487 audio_renderer_host()->GetOutputControllers(callback); |
| 2487 } | 2488 } |
| 2488 | 2489 |
| 2489 } // namespace content | 2490 } // namespace content |
| OLD | NEW |