Commit 9c980a8a authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Work more on getting things built with -Wimplicit-fallthrough.

This CL was uploaded by git cl split.

R=kouhei@chromium.org

Bug: 177475
Change-Id: I09a969c86b5250e6104caf8b0d7ba1672425a8d3
Reviewed-on: https://chromium-review.googlesource.com/889945
Commit-Queue: Kouhei Ueno <kouhei@chromium.org>
Reviewed-by: default avatarKouhei Ueno <kouhei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#532338}
parent 2e0570f9
...@@ -1828,7 +1828,7 @@ std::unique_ptr<TextResourceDecoder> XMLHttpRequest::CreateDecoder() const { ...@@ -1828,7 +1828,7 @@ std::unique_ptr<TextResourceDecoder> XMLHttpRequest::CreateDecoder() const {
case kResponseTypeDefault: case kResponseTypeDefault:
if (ResponseIsXML()) if (ResponseIsXML())
return TextResourceDecoder::Create(decoder_options_for_xml); return TextResourceDecoder::Create(decoder_options_for_xml);
// fall through FALLTHROUGH;
case kResponseTypeText: case kResponseTypeText:
return TextResourceDecoder::Create(decoder_options_for_utf8_plain_text); return TextResourceDecoder::Create(decoder_options_for_utf8_plain_text);
case kResponseTypeDocument: case kResponseTypeDocument:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment