| Index: third_party/WebKit/Source/platform/geometry/TransformState.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/TransformState.h b/third_party/WebKit/Source/platform/geometry/TransformState.h
|
| index f3c41041eb21d7fd43e9e62c0c6021720dc5e691..7ef3f6c950b4f14127392d23353779ceeb1c1e90 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/TransformState.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/TransformState.h
|
| @@ -33,7 +33,7 @@
|
| #include "platform/transforms/AffineTransform.h"
|
| #include "platform/transforms/TransformationMatrix.h"
|
| #include "wtf/Allocator.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -133,7 +133,7 @@ private:
|
| FloatQuad m_lastPlanarQuad;
|
|
|
| // We only allocate the transform if we need to
|
| - OwnPtr<TransformationMatrix> m_accumulatedTransform;
|
| + std::unique_ptr<TransformationMatrix> m_accumulatedTransform;
|
| LayoutSize m_accumulatedOffset;
|
| bool m_accumulatingTransform;
|
| bool m_forceAccumulatingTransform;
|
|
|