| Index: third_party/WebKit/Source/wtf/HexNumber.h
|
| diff --git a/third_party/WebKit/Source/wtf/HexNumber.h b/third_party/WebKit/Source/wtf/HexNumber.h
|
| index 0490ebad5a40d745f4d2beb0116676c64ba1ecb4..185f75d50a459b3f66587923dd31cea913c15df3 100644
|
| --- a/third_party/WebKit/Source/wtf/HexNumber.h
|
| +++ b/third_party/WebKit/Source/wtf/HexNumber.h
|
| @@ -49,14 +49,6 @@ inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMod
|
| }
|
|
|
| template<typename T>
|
| -inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
|
| -{
|
| - const LChar* hexDigits = Internal::hexDigitsForMode(mode);
|
| - *destination++ = hexDigits[byte >> 4];
|
| - *destination++ = hexDigits[byte & 0xF];
|
| -}
|
| -
|
| -template<typename T>
|
| inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMode mode = Uppercase)
|
| {
|
| const LChar* hexDigits = Internal::hexDigitsForMode(mode);
|
| @@ -91,7 +83,6 @@ inline void appendUnsignedAsHexFixedSize(unsigned number, T& destination, unsign
|
| using WTF::appendByteAsHex;
|
| using WTF::appendUnsignedAsHex;
|
| using WTF::appendUnsignedAsHexFixedSize;
|
| -using WTF::placeByteAsHex;
|
| using WTF::Lowercase;
|
|
|
| #endif // HexNumber_h
|
|
|