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

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

Issue 88283003: Revert 237311 "Added an "enable-audio-processor" flag and WebRtc..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 cc::switches::kStrictLayerPropertyChangeChecking, 1087 cc::switches::kStrictLayerPropertyChangeChecking,
1088 cc::switches::kTopControlsHeight, 1088 cc::switches::kTopControlsHeight,
1089 cc::switches::kTopControlsHideThreshold, 1089 cc::switches::kTopControlsHideThreshold,
1090 cc::switches::kTopControlsShowThreshold, 1090 cc::switches::kTopControlsShowThreshold,
1091 cc::switches::kTraceOverdraw, 1091 cc::switches::kTraceOverdraw,
1092 #if defined(ENABLE_PLUGINS) 1092 #if defined(ENABLE_PLUGINS)
1093 switches::kEnablePepperTesting, 1093 switches::kEnablePepperTesting,
1094 switches::kDisablePepper3d, 1094 switches::kDisablePepper3d,
1095 #endif 1095 #endif
1096 #if defined(ENABLE_WEBRTC) 1096 #if defined(ENABLE_WEBRTC)
1097 switches::kEnableAudioTrackProcessing,
1098 switches::kDisableDeviceEnumeration, 1097 switches::kDisableDeviceEnumeration,
1099 switches::kDisableSCTPDataChannels, 1098 switches::kDisableSCTPDataChannels,
1100 switches::kDisableWebRtcHWDecoding, 1099 switches::kDisableWebRtcHWDecoding,
1101 switches::kDisableWebRtcHWEncoding, 1100 switches::kDisableWebRtcHWEncoding,
1102 switches::kEnableWebRtcAecRecordings, 1101 switches::kEnableWebRtcAecRecordings,
1103 switches::kEnableWebRtcHWVp8Encoding, 1102 switches::kEnableWebRtcHWVp8Encoding,
1104 switches::kEnableWebRtcTcpServerSocket, 1103 switches::kEnableWebRtcTcpServerSocket,
1105 #endif 1104 #endif
1106 #if !defined (GOOGLE_CHROME_BUILD) 1105 #if !defined (GOOGLE_CHROME_BUILD)
1107 // These are unsupported and not fully tested modes, so don't enable them 1106 // These are unsupported and not fully tested modes, so don't enable them
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
1891 // Skip widgets in other processes. 1890 // Skip widgets in other processes.
1892 if (widget->GetProcess()->GetID() != GetID()) 1891 if (widget->GetProcess()->GetID() != GetID())
1893 continue; 1892 continue;
1894 1893
1895 RenderViewHost* rvh = RenderViewHost::From(widget); 1894 RenderViewHost* rvh = RenderViewHost::From(widget);
1896 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1895 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1897 } 1896 }
1898 } 1897 }
1899 1898
1900 } // namespace content 1899 } // namespace content
OLDNEW
« no previous file with comments | « trunk/src/chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | trunk/src/content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698