| Index: third_party/WebKit/Source/core/style/TransformOrigin.h
|
| diff --git a/third_party/WebKit/Source/core/style/TransformOrigin.h b/third_party/WebKit/Source/core/style/TransformOrigin.h
|
| index f4a32eeb4bdf786c634c6ad97fb2d33a6b7333e9..9fb7be76556dd545d1be767971ef069cd1acaef1 100644
|
| --- a/third_party/WebKit/Source/core/style/TransformOrigin.h
|
| +++ b/third_party/WebKit/Source/core/style/TransformOrigin.h
|
| @@ -11,7 +11,7 @@
|
| namespace blink {
|
|
|
| class TransformOrigin {
|
| - DISALLOW_ALLOCATION();
|
| + DISALLOW_NEW();
|
| public:
|
| TransformOrigin(const Length& x, const Length& y, float z) : m_x(x), m_y(y), m_z(z) { }
|
| bool operator==(const TransformOrigin& o) const { return m_x == o.m_x && m_y == o.m_y && m_z == o.m_z; }
|
|
|