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 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1288 switches::kFullMemoryCrashReport, | 1288 switches::kFullMemoryCrashReport, |
1289 switches::kIPCConnectionTimeout, | 1289 switches::kIPCConnectionTimeout, |
1290 switches::kJavaScriptFlags, | 1290 switches::kJavaScriptFlags, |
1291 switches::kLoggingLevel, | 1291 switches::kLoggingLevel, |
1292 switches::kMainFrameResizesAreOrientationChanges, | 1292 switches::kMainFrameResizesAreOrientationChanges, |
1293 switches::kMaxUntiledLayerWidth, | 1293 switches::kMaxUntiledLayerWidth, |
1294 switches::kMaxUntiledLayerHeight, | 1294 switches::kMaxUntiledLayerHeight, |
1295 switches::kMemoryMetrics, | 1295 switches::kMemoryMetrics, |
1296 switches::kNoReferrers, | 1296 switches::kNoReferrers, |
1297 switches::kNoSandbox, | 1297 switches::kNoSandbox, |
| 1298 switches::kOverridePluginPowerSaverForTesting, |
1298 switches::kPpapiInProcess, | 1299 switches::kPpapiInProcess, |
1299 switches::kProfilerTiming, | 1300 switches::kProfilerTiming, |
1300 switches::kReducedReferrerGranularity, | 1301 switches::kReducedReferrerGranularity, |
1301 switches::kReduceSecurityForTesting, | 1302 switches::kReduceSecurityForTesting, |
1302 switches::kRegisterPepperPlugins, | 1303 switches::kRegisterPepperPlugins, |
1303 switches::kRendererStartupDialog, | 1304 switches::kRendererStartupDialog, |
1304 switches::kRootLayerScrolls, | 1305 switches::kRootLayerScrolls, |
1305 switches::kShowPaintRects, | 1306 switches::kShowPaintRects, |
1306 switches::kSitePerProcess, | 1307 switches::kSitePerProcess, |
1307 switches::kStatsCollectionController, | 1308 switches::kStatsCollectionController, |
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2453 if (worker_ref_count_ == 0) | 2454 if (worker_ref_count_ == 0) |
2454 Cleanup(); | 2455 Cleanup(); |
2455 } | 2456 } |
2456 | 2457 |
2457 void RenderProcessHostImpl::GetAudioOutputControllers( | 2458 void RenderProcessHostImpl::GetAudioOutputControllers( |
2458 const GetAudioOutputControllersCallback& callback) const { | 2459 const GetAudioOutputControllersCallback& callback) const { |
2459 audio_renderer_host()->GetOutputControllers(callback); | 2460 audio_renderer_host()->GetOutputControllers(callback); |
2460 } | 2461 } |
2461 | 2462 |
2462 } // namespace content | 2463 } // namespace content |
OLD | NEW |