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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1258 switches::kEnableLinkDisambiguationPopup, | 1258 switches::kEnableLinkDisambiguationPopup, |
1259 switches::kEnableLowResTiling, | 1259 switches::kEnableLowResTiling, |
1260 switches::kEnableInbandTextTracks, | 1260 switches::kEnableInbandTextTracks, |
1261 switches::kEnableLCDText, | 1261 switches::kEnableLCDText, |
1262 switches::kEnableLogging, | 1262 switches::kEnableLogging, |
1263 switches::kEnableMemoryBenchmarking, | 1263 switches::kEnableMemoryBenchmarking, |
1264 switches::kEnableNetworkInformation, | 1264 switches::kEnableNetworkInformation, |
1265 switches::kEnableOverlayFullscreenVideo, | 1265 switches::kEnableOverlayFullscreenVideo, |
1266 switches::kEnableOverlayScrollbar, | 1266 switches::kEnableOverlayScrollbar, |
1267 switches::kEnablePinch, | 1267 switches::kEnablePinch, |
| 1268 switches::kEnablePluginPlaceholderTesting, |
1268 switches::kEnablePreciseMemoryInfo, | 1269 switches::kEnablePreciseMemoryInfo, |
1269 switches::kEnablePreferCompositingToLCDText, | 1270 switches::kEnablePreferCompositingToLCDText, |
1270 switches::kEnablePushMessagePayload, | 1271 switches::kEnablePushMessagePayload, |
1271 switches::kEnablePushMessagingHasPermission, | 1272 switches::kEnablePushMessagingHasPermission, |
1272 switches::kEnableRendererMojoChannel, | 1273 switches::kEnableRendererMojoChannel, |
1273 switches::kEnableSeccompFilterSandbox, | 1274 switches::kEnableSeccompFilterSandbox, |
1274 switches::kEnableSkiaBenchmarking, | 1275 switches::kEnableSkiaBenchmarking, |
1275 switches::kEnableSlimmingPaint, | 1276 switches::kEnableSlimmingPaint, |
1276 switches::kEnableSmoothScrolling, | 1277 switches::kEnableSmoothScrolling, |
1277 switches::kEnableStaleWhileRevalidate, | 1278 switches::kEnableStaleWhileRevalidate, |
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2454 if (worker_ref_count_ == 0) | 2455 if (worker_ref_count_ == 0) |
2455 Cleanup(); | 2456 Cleanup(); |
2456 } | 2457 } |
2457 | 2458 |
2458 void RenderProcessHostImpl::GetAudioOutputControllers( | 2459 void RenderProcessHostImpl::GetAudioOutputControllers( |
2459 const GetAudioOutputControllersCallback& callback) const { | 2460 const GetAudioOutputControllersCallback& callback) const { |
2460 audio_renderer_host()->GetOutputControllers(callback); | 2461 audio_renderer_host()->GetOutputControllers(callback); |
2461 } | 2462 } |
2462 | 2463 |
2463 } // namespace content | 2464 } // namespace content |
OLD | NEW |