Commit a8b0219d authored by David Munro's avatar David Munro Committed by Commit Bot

crostini: Add a missing break to stop accidental switch fallthrough.

Bug: None
Test: CQ
Change-Id: I0b1ef13b013673712abfe69f25fe2ef1dc22d3fe
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2000438
Auto-Submit: David Munro <davidmunro@google.com>
Reviewed-by: default avatarNic Hollingum <hollingum@google.com>
Commit-Queue: David Munro <davidmunro@google.com>
Cr-Commit-Position: refs/heads/master@{#731850}
parent 60459f54
......@@ -360,11 +360,13 @@ Polymer({
default:
assertNotReached();
}
break;
case State.UPGRADING:
messageId = 'upgradingMessage';
break;
case State.SUCCEEDED:
messageId = 'succeededMessage';
break;
}
return messageId ? loadTimeData.getString(messageId) : '';
},
......
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