| Index: third_party/WebKit/Source/core/svg/SVGPathByteStream.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathByteStream.h b/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
|
| index fcc33b36260f6377e956e455aa11e81a29cbb555..5763ea157cf77207ad5c9239712ff50d93d9e26c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
|
| @@ -38,11 +38,11 @@ class SVGPathByteStream {
|
|
|
| public:
|
| static std::unique_ptr<SVGPathByteStream> create() {
|
| - return wrapUnique(new SVGPathByteStream);
|
| + return WTF::wrapUnique(new SVGPathByteStream);
|
| }
|
|
|
| std::unique_ptr<SVGPathByteStream> clone() const {
|
| - return wrapUnique(new SVGPathByteStream(m_data));
|
| + return WTF::wrapUnique(new SVGPathByteStream(m_data));
|
| }
|
|
|
| typedef Vector<unsigned char> Data;
|
|
|