| 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 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1226 switches::kDisableLogging, | 1226 switches::kDisableLogging, |
| 1227 switches::kDisableMediaSource, | 1227 switches::kDisableMediaSource, |
| 1228 switches::kDisableMojoChannel, | 1228 switches::kDisableMojoChannel, |
| 1229 switches::kDisableNewVideoRenderer, | 1229 switches::kDisableNewVideoRenderer, |
| 1230 switches::kDisableNotifications, | 1230 switches::kDisableNotifications, |
| 1231 switches::kDisableOverlayScrollbar, | 1231 switches::kDisableOverlayScrollbar, |
| 1232 switches::kDisablePinch, | 1232 switches::kDisablePinch, |
| 1233 switches::kDisablePrefixedEncryptedMedia, | 1233 switches::kDisablePrefixedEncryptedMedia, |
| 1234 switches::kDisableSeccompFilterSandbox, | 1234 switches::kDisableSeccompFilterSandbox, |
| 1235 switches::kDisableSharedWorkers, | 1235 switches::kDisableSharedWorkers, |
| 1236 switches::kDisableSpeech, |
| 1236 switches::kDisableSVG1DOM, | 1237 switches::kDisableSVG1DOM, |
| 1237 switches::kDisableThreadedCompositing, | 1238 switches::kDisableThreadedCompositing, |
| 1238 switches::kDisableThreadedScrolling, | 1239 switches::kDisableThreadedScrolling, |
| 1239 switches::kDisableTouchAdjustment, | 1240 switches::kDisableTouchAdjustment, |
| 1240 switches::kDisableTouchDragDrop, | 1241 switches::kDisableTouchDragDrop, |
| 1241 switches::kDisableTouchEditing, | 1242 switches::kDisableTouchEditing, |
| 1242 switches::kDisableV8IdleTasks, | 1243 switches::kDisableV8IdleTasks, |
| 1243 switches::kDomAutomationController, | 1244 switches::kDomAutomationController, |
| 1244 switches::kEnableBeginFrameScheduling, | 1245 switches::kEnableBeginFrameScheduling, |
| 1245 switches::kEnableBleedingEdgeRenderingFastPaths, | 1246 switches::kEnableBleedingEdgeRenderingFastPaths, |
| (...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2456 if (worker_ref_count_ == 0) | 2457 if (worker_ref_count_ == 0) |
| 2457 Cleanup(); | 2458 Cleanup(); |
| 2458 } | 2459 } |
| 2459 | 2460 |
| 2460 void RenderProcessHostImpl::GetAudioOutputControllers( | 2461 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2461 const GetAudioOutputControllersCallback& callback) const { | 2462 const GetAudioOutputControllersCallback& callback) const { |
| 2462 audio_renderer_host()->GetOutputControllers(callback); | 2463 audio_renderer_host()->GetOutputControllers(callback); |
| 2463 } | 2464 } |
| 2464 | 2465 |
| 2465 } // namespace content | 2466 } // namespace content |
| OLD | NEW |