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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1284 switches::kEnableUnsafeES3APIs, | 1284 switches::kEnableUnsafeES3APIs, |
1285 switches::kEnableViewport, | 1285 switches::kEnableViewport, |
1286 switches::kEnableViewportMeta, | 1286 switches::kEnableViewportMeta, |
1287 switches::kEnableVtune, | 1287 switches::kEnableVtune, |
1288 switches::kEnableWebGLDraftExtensions, | 1288 switches::kEnableWebGLDraftExtensions, |
1289 switches::kEnableWebGLImageChromium, | 1289 switches::kEnableWebGLImageChromium, |
1290 switches::kExplicitlyAllowedPorts, | 1290 switches::kExplicitlyAllowedPorts, |
1291 switches::kForceDeviceScaleFactor, | 1291 switches::kForceDeviceScaleFactor, |
1292 switches::kForceDisplayList2dCanvas, | 1292 switches::kForceDisplayList2dCanvas, |
1293 switches::kFullMemoryCrashReport, | 1293 switches::kFullMemoryCrashReport, |
1294 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, | |
1295 switches::kIPCConnectionTimeout, | 1294 switches::kIPCConnectionTimeout, |
1296 switches::kJavaScriptFlags, | 1295 switches::kJavaScriptFlags, |
1297 switches::kLoggingLevel, | 1296 switches::kLoggingLevel, |
1298 switches::kMainFrameResizesAreOrientationChanges, | 1297 switches::kMainFrameResizesAreOrientationChanges, |
1299 switches::kMaxUntiledLayerWidth, | 1298 switches::kMaxUntiledLayerWidth, |
1300 switches::kMaxUntiledLayerHeight, | 1299 switches::kMaxUntiledLayerHeight, |
1301 switches::kMemoryMetrics, | 1300 switches::kMemoryMetrics, |
1302 switches::kNoReferrers, | 1301 switches::kNoReferrers, |
1303 switches::kNoSandbox, | 1302 switches::kNoSandbox, |
1304 switches::kPpapiInProcess, | 1303 switches::kPpapiInProcess, |
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2455 if (worker_ref_count_ == 0) | 2454 if (worker_ref_count_ == 0) |
2456 Cleanup(); | 2455 Cleanup(); |
2457 } | 2456 } |
2458 | 2457 |
2459 void RenderProcessHostImpl::GetAudioOutputControllers( | 2458 void RenderProcessHostImpl::GetAudioOutputControllers( |
2460 const GetAudioOutputControllersCallback& callback) const { | 2459 const GetAudioOutputControllersCallback& callback) const { |
2461 audio_renderer_host()->GetOutputControllers(callback); | 2460 audio_renderer_host()->GetOutputControllers(callback); |
2462 } | 2461 } |
2463 | 2462 |
2464 } // namespace content | 2463 } // namespace content |
OLD | NEW |