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