Index: third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h |
diff --git a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h |
index 39e890ef18b53fd2f0f94bbcab326a3a34c96b01..fadf40f878dda3658e4242618a976ea09cee49c5 100644 |
--- a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h |
+++ b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h |
@@ -67,7 +67,7 @@ class PLATFORM_EXPORT ImageDecodingStore final { |
public: |
static std::unique_ptr<ImageDecodingStore> create() { |
- return wrapUnique(new ImageDecodingStore); |
+ return WTF::wrapUnique(new ImageDecodingStore); |
} |
~ImageDecodingStore(); |
@@ -141,7 +141,7 @@ class PLATFORM_EXPORT ImageDecodingStore final { |
static std::unique_ptr<DecoderCacheEntry> create( |
const ImageFrameGenerator* generator, |
std::unique_ptr<ImageDecoder> decoder) { |
- return wrapUnique( |
+ return WTF::wrapUnique( |
new DecoderCacheEntry(generator, 0, std::move(decoder))); |
} |