| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "wtf/text/TextCodecReplacement.h" | 5 #include "platform/wtf/text/TextCodecReplacement.h" |
| 6 | 6 |
| 7 #include "wtf/PtrUtil.h" | 7 #include "platform/wtf/PtrUtil.h" |
| 8 #include "wtf/text/CharacterNames.h" | 8 #include "platform/wtf/text/CharacterNames.h" |
| 9 #include "wtf/text/WTFString.h" | 9 #include "platform/wtf/text/WTFString.h" |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 namespace WTF { | 12 namespace WTF { |
| 13 | 13 |
| 14 TextCodecReplacement::TextCodecReplacement() | 14 TextCodecReplacement::TextCodecReplacement() |
| 15 : m_replacementErrorReturned(false) {} | 15 : m_replacementErrorReturned(false) {} |
| 16 | 16 |
| 17 void TextCodecReplacement::registerEncodingNames( | 17 void TextCodecReplacement::registerEncodingNames( |
| 18 EncodingNameRegistrar registrar) { | 18 EncodingNameRegistrar registrar) { |
| 19 // The 'replacement' label itself should not be referenceable by | 19 // The 'replacement' label itself should not be referenceable by |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 m_replacementErrorReturned = true; | 56 m_replacementErrorReturned = true; |
| 57 sawError = true; | 57 sawError = true; |
| 58 return String(&replacementCharacter, 1); | 58 return String(&replacementCharacter, 1); |
| 59 } | 59 } |
| 60 | 60 |
| 61 // 3. Return finished. | 61 // 3. Return finished. |
| 62 return String(); | 62 return String(); |
| 63 } | 63 } |
| 64 | 64 |
| 65 } // namespace WTF | 65 } // namespace WTF |
| OLD | NEW |