Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1230793009: Initial support for the desktop media pipeline on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1370 switches::kDisableWebRtcHWEncoding, 1370 switches::kDisableWebRtcHWEncoding,
1371 switches::kEnableWebRtcDtls12, 1371 switches::kEnableWebRtcDtls12,
1372 switches::kEnableWebRtcHWH264Encoding, 1372 switches::kEnableWebRtcHWH264Encoding,
1373 switches::kEnableWebRtcStunOrigin, 1373 switches::kEnableWebRtcStunOrigin,
1374 switches::kWebRtcMaxCaptureFramerate, 1374 switches::kWebRtcMaxCaptureFramerate,
1375 #endif 1375 #endif
1376 switches::kEnableLowEndDeviceMode, 1376 switches::kEnableLowEndDeviceMode,
1377 switches::kDisableLowEndDeviceMode, 1377 switches::kDisableLowEndDeviceMode,
1378 #if defined(OS_ANDROID) 1378 #if defined(OS_ANDROID)
1379 switches::kDisableGestureRequirementForMediaPlayback, 1379 switches::kDisableGestureRequirementForMediaPlayback,
1380 switches::kDisableWebAudio,
1380 switches::kDisableWebRTC, 1381 switches::kDisableWebRTC,
1381 switches::kDisableWebAudio, 1382 switches::kEnableMediaPipelineOnAndroid,
1382 switches::kRendererWaitForJavaDebugger, 1383 switches::kRendererWaitForJavaDebugger,
1383 #endif 1384 #endif
1384 #if defined(OS_MACOSX) 1385 #if defined(OS_MACOSX)
1385 // Allow this to be set when invoking the browser and relayed along. 1386 // Allow this to be set when invoking the browser and relayed along.
1386 switches::kEnableSandboxLogging, 1387 switches::kEnableSandboxLogging,
1387 #endif 1388 #endif
1388 #if defined(OS_WIN) 1389 #if defined(OS_WIN)
1389 switches::kDisableDirectWrite, 1390 switches::kDisableDirectWrite,
1390 switches::kDisableWin32kRendererLockDown, 1391 switches::kDisableWin32kRendererLockDown,
1391 switches::kTraceExportEventsToETW, 1392 switches::kTraceExportEventsToETW,
(...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after
2514 void RenderProcessHostImpl::GetAudioOutputControllers( 2515 void RenderProcessHostImpl::GetAudioOutputControllers(
2515 const GetAudioOutputControllersCallback& callback) const { 2516 const GetAudioOutputControllersCallback& callback) const {
2516 audio_renderer_host()->GetOutputControllers(callback); 2517 audio_renderer_host()->GetOutputControllers(callback);
2517 } 2518 }
2518 2519
2519 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2520 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2520 return bluetooth_dispatcher_host_.get(); 2521 return bluetooth_dispatcher_host_.get();
2521 } 2522 }
2522 2523
2523 } // namespace content 2524 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | content/renderer/render_frame_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698