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

Side by Side Diff: Source/core/layout/LayoutGeometryMapStep.h

Issue 1308273010: Adapt and reland old position sticky implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix style errors and remaining layout tests. Created 5 years, 3 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 unified diff | Download patch
OLDNEW
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 24 matching lines...) Expand all
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 ALLOW_ONLY_INLINE_ALLOCATION();
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_offsetForViewportConstrained(o.m_offsetForViewportConstrained)
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_isViewportConstrained(o.m_isViewportConstrained)
49 , m_hasTransform(o.m_hasTransform) 49 , m_hasTransform(o.m_hasTransform)
50 { 50 {
51 ASSERT(!o.m_transform); 51 ASSERT(!o.m_transform);
52 } 52 }
53 LayoutGeometryMapStep(const LayoutObject* layoutObject, bool accumulatingTra nsform, bool isNonUniform, bool isFixedPosition, bool hasTransform) 53 LayoutGeometryMapStep(const LayoutObject* layoutObject, bool accumulatingTra nsform, bool isNonUniform, bool isViewportConstrained, bool hasTransform)
54 : m_layoutObject(layoutObject) 54 : m_layoutObject(layoutObject)
55 , m_accumulatingTransform(accumulatingTransform) 55 , m_accumulatingTransform(accumulatingTransform)
56 , m_isNonUniform(isNonUniform) 56 , m_isNonUniform(isNonUniform)
57 , m_isFixedPosition(isFixedPosition) 57 , m_isViewportConstrained(isViewportConstrained)
58 , m_hasTransform(hasTransform) 58 , m_hasTransform(hasTransform)
59 { 59 {
60 } 60 }
61 const LayoutObject* m_layoutObject; 61 const LayoutObject* m_layoutObject;
62 LayoutSize m_offset; 62 LayoutSize m_offset;
63 OwnPtr<TransformationMatrix> m_transform; // Includes offset if non-null. 63 OwnPtr<TransformationMatrix> m_transform; // Includes offset if non-null.
64 LayoutSize m_offsetForFixedPosition; 64 LayoutSize m_offsetForViewportConstrained;
65 bool m_accumulatingTransform; 65 bool m_accumulatingTransform;
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_isViewportConstrained;
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698