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

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

Issue 126993002: Switch from CommandLine switch to WebPreferences to control Pepper 3D. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a bug jamesr pointed out 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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698