Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1505)

Unified Diff: Source/core/style/TransformOrigin.h

Issue 1308633005: Make classes and structures in core/style, core/plugins and core/streams fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/style/StyleSelfAlignmentData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/TransformOrigin.h
diff --git a/Source/core/style/TransformOrigin.h b/Source/core/style/TransformOrigin.h
index 1fb798dbb7d19d718ea9c4d78ec03f4b6150e079..f4a32eeb4bdf786c634c6ad97fb2d33a6b7333e9 100644
--- a/Source/core/style/TransformOrigin.h
+++ b/Source/core/style/TransformOrigin.h
@@ -6,10 +6,12 @@
#define TransformOrigin_h
#include "platform/Length.h"
+#include "wtf/Allocator.h"
namespace blink {
class TransformOrigin {
+ DISALLOW_ALLOCATION();
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; }
« no previous file with comments | « Source/core/style/StyleSelfAlignmentData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698