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 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1263 switches::kEnableLogging, | 1263 switches::kEnableLogging, |
1264 switches::kEnableMemoryBenchmarking, | 1264 switches::kEnableMemoryBenchmarking, |
1265 switches::kEnableNetworkInformation, | 1265 switches::kEnableNetworkInformation, |
1266 switches::kEnableOverlayFullscreenVideo, | 1266 switches::kEnableOverlayFullscreenVideo, |
1267 switches::kEnableOverlayScrollbar, | 1267 switches::kEnableOverlayScrollbar, |
1268 switches::kEnablePinch, | 1268 switches::kEnablePinch, |
1269 switches::kEnablePluginPlaceholderTesting, | 1269 switches::kEnablePluginPlaceholderTesting, |
1270 switches::kEnablePreciseMemoryInfo, | 1270 switches::kEnablePreciseMemoryInfo, |
1271 switches::kEnablePreferCompositingToLCDText, | 1271 switches::kEnablePreferCompositingToLCDText, |
1272 switches::kEnablePushMessagePayload, | 1272 switches::kEnablePushMessagePayload, |
1273 switches::kEnablePushMessagingHasPermission, | |
1274 switches::kEnableRendererMojoChannel, | 1273 switches::kEnableRendererMojoChannel, |
1275 switches::kEnableSeccompFilterSandbox, | 1274 switches::kEnableSeccompFilterSandbox, |
1276 switches::kEnableSkiaBenchmarking, | 1275 switches::kEnableSkiaBenchmarking, |
1277 switches::kEnableSlimmingPaint, | 1276 switches::kEnableSlimmingPaint, |
1278 switches::kEnableSmoothScrolling, | 1277 switches::kEnableSmoothScrolling, |
1279 switches::kEnableStaleWhileRevalidate, | 1278 switches::kEnableStaleWhileRevalidate, |
1280 switches::kEnableStatsTable, | 1279 switches::kEnableStatsTable, |
1281 switches::kEnableStrictSiteIsolation, | 1280 switches::kEnableStrictSiteIsolation, |
1282 switches::kEnableThreadedCompositing, | 1281 switches::kEnableThreadedCompositing, |
1283 switches::kEnableTouchDragDrop, | 1282 switches::kEnableTouchDragDrop, |
(...skipping 1170 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 |