Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.h |
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.h b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.h |
index 5f2bffcdea8e60390004d6bb206ca3504838f5ba..ccfcb20c6412bcb9aaea2f61907e53b21feee5e6 100644 |
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.h |
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceGradient.h |
@@ -28,6 +28,7 @@ |
#include "platform/graphics/Gradient.h" |
#include "platform/transforms/AffineTransform.h" |
#include "wtf/HashMap.h" |
+#include <memory> |
namespace blink { |
@@ -61,7 +62,7 @@ protected: |
private: |
bool m_shouldCollectGradientAttributes : 1; |
- HashMap<const LayoutObject*, OwnPtr<GradientData>> m_gradientMap; |
+ HashMap<const LayoutObject*, std::unique_ptr<GradientData>> m_gradientMap; |
}; |
} // namespace blink |