Index: third_party/WebKit/Source/core/css/CSSMatrix.h |
diff --git a/third_party/WebKit/Source/core/css/CSSMatrix.h b/third_party/WebKit/Source/core/css/CSSMatrix.h |
index f43eb5c2b8b67ee6fd1cedb3b3dbfc91558e0726..7adb5835645bc3fb9cb77263a30311b3950fcecd 100644 |
--- a/third_party/WebKit/Source/core/css/CSSMatrix.h |
+++ b/third_party/WebKit/Source/core/css/CSSMatrix.h |
@@ -29,7 +29,6 @@ |
#include "bindings/core/v8/ScriptWrappable.h" |
#include "platform/transforms/TransformationMatrix.h" |
#include "wtf/text/WTFString.h" |
-#include <memory> |
namespace blink { |
@@ -153,10 +152,10 @@ protected: |
CSSMatrix(const String&, ExceptionState&); |
// TransformationMatrix needs to be 16-byte aligned. PartitionAlloc |
- // supports 16-byte alignment but Oilpan doesn't. So we use an std::unique_ptr |
+ // supports 16-byte alignment but Oilpan doesn't. So we use an OwnPtr |
// to allocate TransformationMatrix on PartitionAlloc. |
// TODO(oilpan): Oilpan should support 16-byte aligned allocations. |
- std::unique_ptr<TransformationMatrix> m_matrix; |
+ OwnPtr<TransformationMatrix> m_matrix; |
}; |
} // namespace blink |