| 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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1283 switches::kReducedReferrerGranularity, | 1283 switches::kReducedReferrerGranularity, |
| 1284 switches::kReduceSecurityForTesting, | 1284 switches::kReduceSecurityForTesting, |
| 1285 switches::kRegisterPepperPlugins, | 1285 switches::kRegisterPepperPlugins, |
| 1286 switches::kRendererStartupDialog, | 1286 switches::kRendererStartupDialog, |
| 1287 switches::kRootLayerScrolls, | 1287 switches::kRootLayerScrolls, |
| 1288 switches::kShowPaintRects, | 1288 switches::kShowPaintRects, |
| 1289 switches::kSitePerProcess, | 1289 switches::kSitePerProcess, |
| 1290 switches::kStatsCollectionController, | 1290 switches::kStatsCollectionController, |
| 1291 switches::kTestType, | 1291 switches::kTestType, |
| 1292 switches::kTouchEvents, | 1292 switches::kTouchEvents, |
| 1293 switches::kTouchTextSelectionStrategy, |
| 1293 switches::kTraceToConsole, | 1294 switches::kTraceToConsole, |
| 1294 switches::kUseDiscardableMemory, | 1295 switches::kUseDiscardableMemory, |
| 1295 // This flag needs to be propagated to the renderer process for | 1296 // This flag needs to be propagated to the renderer process for |
| 1296 // --in-process-webgl. | 1297 // --in-process-webgl. |
| 1297 switches::kUseGL, | 1298 switches::kUseGL, |
| 1298 switches::kUseMobileUserAgent, | 1299 switches::kUseMobileUserAgent, |
| 1299 switches::kUseNormalPriorityForTileTaskWorkerThreads, | 1300 switches::kUseNormalPriorityForTileTaskWorkerThreads, |
| 1300 switches::kV, | 1301 switches::kV, |
| 1301 switches::kVideoThreads, | 1302 switches::kVideoThreads, |
| 1302 switches::kVModule, | 1303 switches::kVModule, |
| (...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2397 if (worker_ref_count_ == 0) | 2398 if (worker_ref_count_ == 0) |
| 2398 Cleanup(); | 2399 Cleanup(); |
| 2399 } | 2400 } |
| 2400 | 2401 |
| 2401 void RenderProcessHostImpl::GetAudioOutputControllers( | 2402 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2402 const GetAudioOutputControllersCallback& callback) const { | 2403 const GetAudioOutputControllersCallback& callback) const { |
| 2403 audio_renderer_host()->GetOutputControllers(callback); | 2404 audio_renderer_host()->GetOutputControllers(callback); |
| 2404 } | 2405 } |
| 2405 | 2406 |
| 2406 } // namespace content | 2407 } // namespace content |
| OLD | NEW |