OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple Inc. All rights reserved. |
3 * Copyright (C) 2014 Google Inc. All rights reserved. | 3 * Copyright (C) 2014 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "platform/transforms/TransformationMatrix.h" | 31 #include "platform/transforms/TransformationMatrix.h" |
32 #include "wtf/Allocator.h" | 32 #include "wtf/Allocator.h" |
33 #include "wtf/OwnPtr.h" | 33 #include "wtf/OwnPtr.h" |
34 | 34 |
35 namespace blink { | 35 namespace blink { |
36 | 36 |
37 class LayoutObject; | 37 class LayoutObject; |
38 | 38 |
39 // Stores data about how to map from one layoutObject to its container. | 39 // Stores data about how to map from one layoutObject to its container. |
40 struct LayoutGeometryMapStep { | 40 struct LayoutGeometryMapStep { |
41 ALLOW_ONLY_INLINE_ALLOCATION(); | 41 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
42 LayoutGeometryMapStep(const LayoutGeometryMapStep& o) | 42 LayoutGeometryMapStep(const LayoutGeometryMapStep& o) |
43 : m_layoutObject(o.m_layoutObject) | 43 : m_layoutObject(o.m_layoutObject) |
44 , m_offset(o.m_offset) | 44 , m_offset(o.m_offset) |
45 , m_offsetForFixedPosition(o.m_offsetForFixedPosition) | 45 , m_offsetForFixedPosition(o.m_offsetForFixedPosition) |
46 , m_accumulatingTransform(o.m_accumulatingTransform) | 46 , m_accumulatingTransform(o.m_accumulatingTransform) |
47 , m_isNonUniform(o.m_isNonUniform) | 47 , m_isNonUniform(o.m_isNonUniform) |
48 , m_isFixedPosition(o.m_isFixedPosition) | 48 , m_isFixedPosition(o.m_isFixedPosition) |
49 , m_hasTransform(o.m_hasTransform) | 49 , m_hasTransform(o.m_hasTransform) |
50 { | 50 { |
51 ASSERT(!o.m_transform); | 51 ASSERT(!o.m_transform); |
(...skipping 14 matching lines...) Expand all Loading... |
66 bool m_isNonUniform; // Mapping depends on the input point, e.g. because of
CSS columns. | 66 bool m_isNonUniform; // Mapping depends on the input point, e.g. because of
CSS columns. |
67 bool m_isFixedPosition; | 67 bool m_isFixedPosition; |
68 bool m_hasTransform; | 68 bool m_hasTransform; |
69 }; | 69 }; |
70 | 70 |
71 } // namespace blink | 71 } // namespace blink |
72 | 72 |
73 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::LayoutGeometryMapStep)
; | 73 WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(blink::LayoutGeometryMapStep)
; |
74 | 74 |
75 #endif // LayoutGeometryMapStep_h | 75 #endif // LayoutGeometryMapStep_h |
OLD | NEW |