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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1110 cc::switches::kShowScreenSpaceRects, | 1110 cc::switches::kShowScreenSpaceRects, |
1111 cc::switches::kShowSurfaceDamageRects, | 1111 cc::switches::kShowSurfaceDamageRects, |
1112 cc::switches::kSlowDownRasterScaleFactor, | 1112 cc::switches::kSlowDownRasterScaleFactor, |
1113 cc::switches::kStrictLayerPropertyChangeChecking, | 1113 cc::switches::kStrictLayerPropertyChangeChecking, |
1114 cc::switches::kTopControlsHeight, | 1114 cc::switches::kTopControlsHeight, |
1115 cc::switches::kTopControlsHideThreshold, | 1115 cc::switches::kTopControlsHideThreshold, |
1116 cc::switches::kTopControlsShowThreshold, | 1116 cc::switches::kTopControlsShowThreshold, |
1117 cc::switches::kTraceOverdraw, | 1117 cc::switches::kTraceOverdraw, |
1118 #if defined(ENABLE_PLUGINS) | 1118 #if defined(ENABLE_PLUGINS) |
1119 switches::kEnablePepperTesting, | 1119 switches::kEnablePepperTesting, |
1120 switches::kDisablePepper3d, | |
1121 #endif | 1120 #endif |
1122 #if defined(ENABLE_WEBRTC) | 1121 #if defined(ENABLE_WEBRTC) |
1123 switches::kEnableAudioTrackProcessing, | 1122 switches::kEnableAudioTrackProcessing, |
1124 switches::kDisableDeviceEnumeration, | 1123 switches::kDisableDeviceEnumeration, |
1125 switches::kDisableSCTPDataChannels, | 1124 switches::kDisableSCTPDataChannels, |
1126 switches::kDisableWebRtcHWDecoding, | 1125 switches::kDisableWebRtcHWDecoding, |
1127 switches::kDisableWebRtcHWEncoding, | 1126 switches::kDisableWebRtcHWEncoding, |
1128 switches::kEnableWebRtcAecRecordings, | 1127 switches::kEnableWebRtcAecRecordings, |
1129 switches::kEnableWebRtcHWVp8Encoding, | 1128 switches::kEnableWebRtcHWVp8Encoding, |
1130 switches::kEnableWebRtcTcpServerSocket, | 1129 switches::kEnableWebRtcTcpServerSocket, |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 return; | 2016 return; |
2018 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); | 2017 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); |
2019 } | 2018 } |
2020 | 2019 |
2021 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { | 2020 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { |
2022 Send(new MediaStreamMsg_DisableAecDump()); | 2021 Send(new MediaStreamMsg_DisableAecDump()); |
2023 } | 2022 } |
2024 #endif | 2023 #endif |
2025 | 2024 |
2026 } // namespace content | 2025 } // namespace content |
OLD | NEW |