| Index: content/renderer/media/rtc_video_decoder.cc
 | 
| diff --git a/content/renderer/media/rtc_video_decoder.cc b/content/renderer/media/rtc_video_decoder.cc
 | 
| index 123a90ebfb208de73ae3650c43e53658dc9215b6..b3f3f6a3b2ce956e9e95e85daaf0e6d57b69f643 100644
 | 
| --- a/content/renderer/media/rtc_video_decoder.cc
 | 
| +++ b/content/renderer/media/rtc_video_decoder.cc
 | 
| @@ -23,6 +23,12 @@
 | 
|  #include "third_party/webrtc/base/refcount.h"
 | 
|  #include "third_party/webrtc/video_frame.h"
 | 
|  
 | 
| +#if defined(OS_WIN)
 | 
| +#include "base/command_line.h"
 | 
| +#include "base/win/windows_version.h"
 | 
| +#include "content/public/common/content_switches.h"
 | 
| +#endif  // defined(OS_WIN)
 | 
| +
 | 
|  namespace content {
 | 
|  
 | 
|  const int32_t RTCVideoDecoder::ID_LAST = 0x3FFFFFFF;
 | 
| @@ -89,6 +95,16 @@ std::unique_ptr<RTCVideoDecoder> RTCVideoDecoder::Create(
 | 
|      webrtc::VideoCodecType type,
 | 
|      media::GpuVideoAcceleratorFactories* factories) {
 | 
|    std::unique_ptr<RTCVideoDecoder> decoder;
 | 
| +// See https://bugs.chromium.org/p/webrtc/issues/detail?id=5717.
 | 
| +#if defined(OS_WIN)
 | 
| +  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
 | 
| +          switches::kEnableWin7HWH264Decoding) &&
 | 
| +      type == webrtc::kVideoCodecH264 &&
 | 
| +      base::win::GetVersion() == base::win::VERSION_WIN7) {
 | 
| +    DLOG(ERROR) << "H264 HW decoding on Win7 is not supported.";
 | 
| +    return decoder;
 | 
| +  }
 | 
| +#endif  // defined(OS_WIN)
 | 
|    // Convert WebRTC codec type to media codec profile.
 | 
|    media::VideoCodecProfile profile;
 | 
|    switch (type) {
 | 
| 
 |