| 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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1332     switches::kDisableWebRtcHWDecoding, | 1332     switches::kDisableWebRtcHWDecoding, | 
| 1333     switches::kDisableWebRtcHWEncoding, | 1333     switches::kDisableWebRtcHWEncoding, | 
| 1334     switches::kEnableWebRtcHWH264Encoding, | 1334     switches::kEnableWebRtcHWH264Encoding, | 
| 1335     switches::kWebRtcMaxCaptureFramerate, | 1335     switches::kWebRtcMaxCaptureFramerate, | 
| 1336 #endif | 1336 #endif | 
| 1337     switches::kEnableLowEndDeviceMode, | 1337     switches::kEnableLowEndDeviceMode, | 
| 1338     switches::kDisableLowEndDeviceMode, | 1338     switches::kDisableLowEndDeviceMode, | 
| 1339 #if defined(OS_ANDROID) | 1339 #if defined(OS_ANDROID) | 
| 1340     switches::kDisableGestureRequirementForMediaPlayback, | 1340     switches::kDisableGestureRequirementForMediaPlayback, | 
| 1341     switches::kDisableWebRTC, | 1341     switches::kDisableWebRTC, | 
|  | 1342     switches::kEnableCursorAnchorInfo, | 
| 1342     switches::kMediaDrmEnableNonCompositing, | 1343     switches::kMediaDrmEnableNonCompositing, | 
| 1343     switches::kNetworkCountryIso, | 1344     switches::kNetworkCountryIso, | 
| 1344     switches::kDisableWebAudio, | 1345     switches::kDisableWebAudio, | 
| 1345     switches::kRendererWaitForJavaDebugger, | 1346     switches::kRendererWaitForJavaDebugger, | 
| 1346 #endif | 1347 #endif | 
| 1347 #if defined(OS_MACOSX) | 1348 #if defined(OS_MACOSX) | 
| 1348     // Allow this to be set when invoking the browser and relayed along. | 1349     // Allow this to be set when invoking the browser and relayed along. | 
| 1349     switches::kEnableSandboxLogging, | 1350     switches::kEnableSandboxLogging, | 
| 1350 #endif | 1351 #endif | 
| 1351 #if defined(OS_MACOSX) && !defined(OS_IOS) | 1352 #if defined(OS_MACOSX) && !defined(OS_IOS) | 
| (...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2393   if (worker_ref_count_ == 0) | 2394   if (worker_ref_count_ == 0) | 
| 2394     Cleanup(); | 2395     Cleanup(); | 
| 2395 } | 2396 } | 
| 2396 | 2397 | 
| 2397 void RenderProcessHostImpl::GetAudioOutputControllers( | 2398 void RenderProcessHostImpl::GetAudioOutputControllers( | 
| 2398     const GetAudioOutputControllersCallback& callback) const { | 2399     const GetAudioOutputControllersCallback& callback) const { | 
| 2399   audio_renderer_host()->GetOutputControllers(callback); | 2400   audio_renderer_host()->GetOutputControllers(callback); | 
| 2400 } | 2401 } | 
| 2401 | 2402 | 
| 2402 }  // namespace content | 2403 }  // namespace content | 
| OLD | NEW | 
|---|