Chromium Code Reviews| Index: Source/modules/webmidi/MIDIPort.cpp |
| diff --git a/Source/modules/webmidi/MIDIPort.cpp b/Source/modules/webmidi/MIDIPort.cpp |
| index c6d587859f267883719afbfcd8e26b9418b10933..6e8388a6072722570b2bbde8906a6834f310a276 100644 |
| --- a/Source/modules/webmidi/MIDIPort.cpp |
| +++ b/Source/modules/webmidi/MIDIPort.cpp |
| @@ -61,9 +61,9 @@ String MIDIPort::type() const |
| { |
| switch (m_type) { |
| case MIDIPortTypeInput: |
| - return ASCIILiteral("input"); |
| + return "input"; |
| case MIDIPortTypeOutput: |
| - return ASCIILiteral("output"); |
| + return "output"; |
| default: |
| ASSERT_NOT_REACHED(); |
| } |