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

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

Issue 136343002: Remove Chrome for TV code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 #if defined(ENABLE_WEBRTC) 1130 #if defined(ENABLE_WEBRTC)
1131 switches::kEnableAudioTrackProcessing, 1131 switches::kEnableAudioTrackProcessing,
1132 switches::kDisableDeviceEnumeration, 1132 switches::kDisableDeviceEnumeration,
1133 switches::kDisableSCTPDataChannels, 1133 switches::kDisableSCTPDataChannels,
1134 switches::kDisableWebRtcHWDecoding, 1134 switches::kDisableWebRtcHWDecoding,
1135 switches::kDisableWebRtcHWEncoding, 1135 switches::kDisableWebRtcHWEncoding,
1136 switches::kEnableWebRtcAecRecordings, 1136 switches::kEnableWebRtcAecRecordings,
1137 switches::kEnableWebRtcHWVp8Encoding, 1137 switches::kEnableWebRtcHWVp8Encoding,
1138 switches::kEnableWebRtcTcpServerSocket, 1138 switches::kEnableWebRtcTcpServerSocket,
1139 #endif 1139 #endif
1140 #if defined(GOOGLE_TV)
1141 switches::kUseExternalVideoSurfaceThresholdInPixels,
1142 #endif
1143 #if defined(OS_ANDROID) 1140 #if defined(OS_ANDROID)
1144 switches::kDisableGestureRequirementForMediaPlayback, 1141 switches::kDisableGestureRequirementForMediaPlayback,
1145 switches::kDisableLowEndDeviceMode, 1142 switches::kDisableLowEndDeviceMode,
1146 switches::kDisableWebRTC, 1143 switches::kDisableWebRTC,
1147 switches::kEnableLowEndDeviceMode, 1144 switches::kEnableLowEndDeviceMode,
1148 switches::kEnableSpeechRecognition, 1145 switches::kEnableSpeechRecognition,
1149 switches::kHideScrollbars, 1146 switches::kHideScrollbars,
1150 switches::kMediaDrmEnableNonCompositing, 1147 switches::kMediaDrmEnableNonCompositing,
1151 switches::kNetworkCountryIso, 1148 switches::kNetworkCountryIso,
1152 #endif 1149 #endif
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
2023 return; 2020 return;
2024 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2021 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2025 } 2022 }
2026 2023
2027 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2024 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2028 Send(new MediaStreamMsg_DisableAecDump()); 2025 Send(new MediaStreamMsg_DisableAecDump());
2029 } 2026 }
2030 #endif 2027 #endif
2031 2028
2032 } // namespace content 2029 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/media/android/browser_media_player_manager.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698