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 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1249 switches::kDisableThreadedScrolling, | 1249 switches::kDisableThreadedScrolling, |
1250 switches::kDisableTouchAdjustment, | 1250 switches::kDisableTouchAdjustment, |
1251 switches::kDisableTouchDragDrop, | 1251 switches::kDisableTouchDragDrop, |
1252 switches::kDisableTouchEditing, | 1252 switches::kDisableTouchEditing, |
1253 switches::kDisableV8IdleTasks, | 1253 switches::kDisableV8IdleTasks, |
1254 switches::kDomAutomationController, | 1254 switches::kDomAutomationController, |
1255 switches::kEnableBeginFrameScheduling, | 1255 switches::kEnableBeginFrameScheduling, |
1256 switches::kEnableBleedingEdgeRenderingFastPaths, | 1256 switches::kEnableBleedingEdgeRenderingFastPaths, |
1257 switches::kEnableBlinkFeatures, | 1257 switches::kEnableBlinkFeatures, |
1258 switches::kEnableBrowserSideNavigation, | 1258 switches::kEnableBrowserSideNavigation, |
1259 switches::kEnableCompositorAnimationTimelines, | |
1260 switches::kEnableCredentialManagerAPI, | 1259 switches::kEnableCredentialManagerAPI, |
1261 switches::kEnableDeferredImageDecoding, | 1260 switches::kEnableDeferredImageDecoding, |
1262 switches::kEnableDelayAgnosticAec, | 1261 switches::kEnableDelayAgnosticAec, |
1263 switches::kEnableDisplayList2dCanvas, | 1262 switches::kEnableDisplayList2dCanvas, |
1264 switches::kEnableDistanceFieldText, | 1263 switches::kEnableDistanceFieldText, |
1265 switches::kEnableExperimentalCanvasFeatures, | 1264 switches::kEnableExperimentalCanvasFeatures, |
1266 switches::kEnableExperimentalWebPlatformFeatures, | 1265 switches::kEnableExperimentalWebPlatformFeatures, |
1267 switches::kEnableGPUClientLogging, | 1266 switches::kEnableGPUClientLogging, |
1268 switches::kEnableGpuClientTracing, | 1267 switches::kEnableGpuClientTracing, |
1269 switches::kEnableGPUServiceLogging, | 1268 switches::kEnableGPUServiceLogging, |
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2484 if (worker_ref_count_ == 0) | 2483 if (worker_ref_count_ == 0) |
2485 Cleanup(); | 2484 Cleanup(); |
2486 } | 2485 } |
2487 | 2486 |
2488 void RenderProcessHostImpl::GetAudioOutputControllers( | 2487 void RenderProcessHostImpl::GetAudioOutputControllers( |
2489 const GetAudioOutputControllersCallback& callback) const { | 2488 const GetAudioOutputControllersCallback& callback) const { |
2490 audio_renderer_host()->GetOutputControllers(callback); | 2489 audio_renderer_host()->GetOutputControllers(callback); |
2491 } | 2490 } |
2492 | 2491 |
2493 } // namespace content | 2492 } // namespace content |
OLD | NEW |