| Index: third_party/WebKit/Source/wtf/text/TextCodecUTF16.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextCodecUTF16.cpp b/third_party/WebKit/Source/wtf/text/TextCodecUTF16.cpp
|
| index 453a4f3e77f03f7b25253270b32b34b6d4b3886c..8fcb4f49300a9b513ab02459d9e5c8608e131a2a 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextCodecUTF16.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/TextCodecUTF16.cpp
|
| @@ -53,13 +53,13 @@ void TextCodecUTF16::registerEncodingNames(EncodingNameRegistrar registrar) {
|
| static std::unique_ptr<TextCodec> newStreamingTextDecoderUTF16LE(
|
| const TextEncoding&,
|
| const void*) {
|
| - return makeUnique<TextCodecUTF16>(true);
|
| + return WTF::makeUnique<TextCodecUTF16>(true);
|
| }
|
|
|
| static std::unique_ptr<TextCodec> newStreamingTextDecoderUTF16BE(
|
| const TextEncoding&,
|
| const void*) {
|
| - return makeUnique<TextCodecUTF16>(false);
|
| + return WTF::makeUnique<TextCodecUTF16>(false);
|
| }
|
|
|
| void TextCodecUTF16::registerCodecs(TextCodecRegistrar registrar) {
|
|
|