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

Unified Diff: content/public/common/content_switches.cc

Issue 2573933002: Restore switch kDisableWebRtcHWEncoding (Closed)
Patch Set: keep switches in right order Created 4 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 0082c7877a29ba0469b7d3c8c8fe41979115d4ec..d5c486fa5940b57f08f45465f4e942a9fc0ed6a5 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -915,14 +915,17 @@ const char kZygoteCmdPrefix[] = "zygote-cmd-prefix";
const char kZygoteProcess[] = "zygote";
#if BUILDFLAG(ENABLE_WEBRTC)
-// Disables HW decode acceleration for WebRTC.
-const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding";
-
// Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it
// ignores this switch on its stable and beta channels.
const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption";
+// Disables HW decode acceleration for WebRTC.
+const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding";
+
// Disables HW encode acceleration for WebRTC.
+const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding";
+
+// Disables HW VP8 encode acceleration for WebRTC.
const char kDisableWebRtcHWVP8Encoding[] = "disable-webrtc-hw-vp8-encoding";
// Enables Origin header in Stun messages for WebRTC.

Powered by Google App Engine
This is Rietveld 408576698