Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.h |
| diff --git a/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.h b/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5ff2814e26002fdc246e09f0e94b564fbe77f3ca |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part.h |
| @@ -0,0 +1,73 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef NGOutOfFlowLayoutPart_h |
| +#define NGOutOfFlowLayoutPart_h |
| + |
| +#include "core/CoreExport.h" |
| + |
| +#include "core/layout/ng/ng_units.h" |
| +#include "core/layout/ng/ng_constraint_space.h" |
| +#include "core/layout/ng/ng_absolute_utils.h" |
| +#include "core/layout/ng/ng_layout_algorithm.h" |
| +#include "platform/heap/Handle.h" |
| +#include "wtf/Optional.h" |
| + |
| +namespace blink { |
| + |
| +class ComputedStyle; |
| +class NGBlockNode; |
| +class NGFragmentBase; |
| +class NGConstraintSpace; |
| + |
| +// Helper class for positioning of out-of-flow blocks. |
| +// It should be used together with NGFragmentBuilder. |
| +// See NGFragmentBuilder::AddOutOfFlowChildCandidate documentation |
| +// for example of using these classes together. |
| +class CORE_EXPORT NGOutOfFlowLayoutPart |
| + : public GarbageCollectedFinalized<NGOutOfFlowLayoutPart> { |
| + public: |
| + NGOutOfFlowLayoutPart(PassRefPtr<const ComputedStyle>, NGLogicalSize); |
| + |
| + // If false, this fragment should be passed up the tree for layout by |
| + // an ancestor. |
| + bool StartLayout(NGBlockNode*, const NGStaticPosition&); |
| + // @return true if layout is complete. |
|
cbiesinger
2017/01/04 00:13:16
This is now outdated
atotic
2017/01/04 01:34:35
removed.
|
| + NGLayoutStatus Layout(NGFragmentBase**, NGLogicalOffset*); |
| + |
| + DECLARE_TRACE(); |
| + |
| + private: |
| + bool ComputeInlineSizeEstimate(); |
| + bool ComputeBlockSizeEstimate(); |
| + bool ComputeNodeFragment(); |
| + |
| + bool contains_fixed_; |
| + bool contains_absolute_; |
| + |
| + enum State { |
| + kComputeInlineEstimate, |
| + kPartialPosition, |
| + kComputeBlockEstimate, |
| + kFullPosition, |
| + kGenerateFragment, |
| + kDone |
| + }; |
| + State state_; |
| + |
| + NGStaticPosition static_position_; |
| + NGLogicalOffset parent_offset_; |
| + NGPhysicalOffset parent_physical_offset_; |
| + Member<NGConstraintSpace> parent_space_; |
| + Member<NGBlockNode> node_; |
| + Member<NGConstraintSpace> node_space_; |
| + Member<NGFragmentBase> node_fragment_; |
| + NGAbsolutePhysicalPosition node_position_; |
| + Optional<LayoutUnit> inline_estimate_; |
| + Optional<LayoutUnit> block_estimate_; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif |