Commit ffac2aa1 authored by Ian Kilpatrick's avatar Ian Kilpatrick Committed by Commit Bot

Remove dead member from LayoutGeometryMapStep.

Change-Id: Iffb3fd56ff4578f60e2c5c8d019fb75ebb61d9fb
Reviewed-on: https://chromium-review.googlesource.com/1183492
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: default avatarEmil A Eklund <eae@chromium.org>
Cr-Commit-Position: refs/heads/master@{#585071}
parent 5bac165c
......@@ -53,7 +53,6 @@ struct LayoutGeometryMapStep {
: layout_object_(o.layout_object_),
offset_(o.offset_),
offset_for_fixed_position_(o.offset_for_fixed_position_),
offset_for_sticky_position_(o.offset_for_sticky_position_),
flags_(o.flags_) {
DCHECK(!o.transform_);
}
......@@ -64,11 +63,7 @@ struct LayoutGeometryMapStep {
LayoutSize offset_;
std::unique_ptr<TransformationMatrix>
transform_; // Includes offset if non-null.
// If m_offsetForFixedPosition could only apply to the fixed position steps,
// we may be able to merge with m_offsetForStickyPosition and simplify
// mapping.
LayoutSize offset_for_fixed_position_;
LayoutSize offset_for_sticky_position_;
GeometryInfoFlags flags_;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment