| 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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1253 switches::kEnableInbandTextTracks, | 1253 switches::kEnableInbandTextTracks, |
| 1254 switches::kEnableLCDText, | 1254 switches::kEnableLCDText, |
| 1255 switches::kEnableLogging, | 1255 switches::kEnableLogging, |
| 1256 switches::kEnableMemoryBenchmarking, | 1256 switches::kEnableMemoryBenchmarking, |
| 1257 switches::kEnableNetworkInformation, | 1257 switches::kEnableNetworkInformation, |
| 1258 switches::kEnableOverlayFullscreenVideo, | 1258 switches::kEnableOverlayFullscreenVideo, |
| 1259 switches::kEnableOverlayScrollbar, | 1259 switches::kEnableOverlayScrollbar, |
| 1260 switches::kEnablePinch, | 1260 switches::kEnablePinch, |
| 1261 switches::kEnablePreciseMemoryInfo, | 1261 switches::kEnablePreciseMemoryInfo, |
| 1262 switches::kEnablePushMessagePayload, | 1262 switches::kEnablePushMessagePayload, |
| 1263 switches::kEnablePushMessagingHasPermission, |
| 1263 switches::kEnableRendererMojoChannel, | 1264 switches::kEnableRendererMojoChannel, |
| 1264 switches::kEnableSeccompFilterSandbox, | 1265 switches::kEnableSeccompFilterSandbox, |
| 1265 switches::kEnableSkiaBenchmarking, | 1266 switches::kEnableSkiaBenchmarking, |
| 1266 switches::kEnableSlimmingPaint, | 1267 switches::kEnableSlimmingPaint, |
| 1267 switches::kEnableSmoothScrolling, | 1268 switches::kEnableSmoothScrolling, |
| 1268 switches::kEnableStatsTable, | 1269 switches::kEnableStatsTable, |
| 1269 switches::kEnableStrictSiteIsolation, | 1270 switches::kEnableStrictSiteIsolation, |
| 1270 switches::kEnableThreadedCompositing, | 1271 switches::kEnableThreadedCompositing, |
| 1271 switches::kEnableTouchDragDrop, | 1272 switches::kEnableTouchDragDrop, |
| 1272 switches::kEnableTouchEditing, | 1273 switches::kEnableTouchEditing, |
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2409 if (worker_ref_count_ == 0) | 2410 if (worker_ref_count_ == 0) |
| 2410 Cleanup(); | 2411 Cleanup(); |
| 2411 } | 2412 } |
| 2412 | 2413 |
| 2413 void RenderProcessHostImpl::GetAudioOutputControllers( | 2414 void RenderProcessHostImpl::GetAudioOutputControllers( |
| 2414 const GetAudioOutputControllersCallback& callback) const { | 2415 const GetAudioOutputControllersCallback& callback) const { |
| 2415 audio_renderer_host()->GetOutputControllers(callback); | 2416 audio_renderer_host()->GetOutputControllers(callback); |
| 2416 } | 2417 } |
| 2417 | 2418 |
| 2418 } // namespace content | 2419 } // namespace content |
| OLD | NEW |