Chromium Code Reviews| 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 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1039 cc::switches::kStrictLayerPropertyChangeChecking, | 1039 cc::switches::kStrictLayerPropertyChangeChecking, |
| 1040 cc::switches::kTopControlsHeight, | 1040 cc::switches::kTopControlsHeight, |
| 1041 cc::switches::kTopControlsHideThreshold, | 1041 cc::switches::kTopControlsHideThreshold, |
| 1042 cc::switches::kTopControlsShowThreshold, | 1042 cc::switches::kTopControlsShowThreshold, |
| 1043 cc::switches::kTraceOverdraw, | 1043 cc::switches::kTraceOverdraw, |
| 1044 #if defined(ENABLE_PLUGINS) | 1044 #if defined(ENABLE_PLUGINS) |
| 1045 switches::kEnablePepperTesting, | 1045 switches::kEnablePepperTesting, |
| 1046 switches::kDisablePepper3d, | 1046 switches::kDisablePepper3d, |
| 1047 #endif | 1047 #endif |
| 1048 #if defined(ENABLE_WEBRTC) | 1048 #if defined(ENABLE_WEBRTC) |
| 1049 switches::kEnableWebRtcAudioProcessor, | |
|
perkj_chrome
2013/11/04 12:30:14
kEnableAudioTrackProcessing?
no longer working on chromium
2013/11/04 15:28:17
Since Henrik G has similar concern, so I am going
| |
| 1049 switches::kDisableDeviceEnumeration, | 1050 switches::kDisableDeviceEnumeration, |
| 1050 switches::kDisableSCTPDataChannels, | 1051 switches::kDisableSCTPDataChannels, |
| 1051 switches::kDisableWebRtcHWDecoding, | 1052 switches::kDisableWebRtcHWDecoding, |
| 1052 switches::kDisableWebRtcHWEncoding, | 1053 switches::kDisableWebRtcHWEncoding, |
| 1053 switches::kEnableWebRtcAecRecordings, | 1054 switches::kEnableWebRtcAecRecordings, |
| 1054 switches::kEnableWebRtcHWVp8Encoding, | 1055 switches::kEnableWebRtcHWVp8Encoding, |
| 1055 switches::kEnableWebRtcTcpServerSocket, | 1056 switches::kEnableWebRtcTcpServerSocket, |
| 1056 #endif | 1057 #endif |
| 1057 #if !defined (GOOGLE_CHROME_BUILD) | 1058 #if !defined (GOOGLE_CHROME_BUILD) |
| 1058 // These are unsupported and not fully tested modes, so don't enable them | 1059 // These are unsupported and not fully tested modes, so don't enable them |
| (...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1833 // Skip widgets in other processes. | 1834 // Skip widgets in other processes. |
| 1834 if (widget->GetProcess()->GetID() != GetID()) | 1835 if (widget->GetProcess()->GetID() != GetID()) |
| 1835 continue; | 1836 continue; |
| 1836 | 1837 |
| 1837 RenderViewHost* rvh = RenderViewHost::From(widget); | 1838 RenderViewHost* rvh = RenderViewHost::From(widget); |
| 1838 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); | 1839 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); |
| 1839 } | 1840 } |
| 1840 } | 1841 } |
| 1841 | 1842 |
| 1842 } // namespace content | 1843 } // namespace content |
| OLD | NEW |