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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc

Issue 2514693004: Revert of Remove redundant 'derived constraint space' setters from NGConstraintSpace (Closed)
Patch Set: Created 4 years, 1 month 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
Index: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
index 073ad22adc75b1ee44014b310d8239a47033674d..9428b30f5c72d1ed834e4bd6f0b742e8067a59b7 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_constraint_space.cc
@@ -17,6 +17,7 @@
TextDirection direction,
NGPhysicalConstraintSpace* physical_space)
: physical_space_(physical_space),
+ size_(physical_space->available_size_.ConvertToLogical(writing_mode)),
writing_mode_(writing_mode),
direction_(direction) {}
@@ -142,6 +143,45 @@
return iterator;
}
+void NGConstraintSpace::SetOverflowTriggersScrollbar(bool inline_triggers,
+ bool block_triggers) {
+ if (writing_mode_ == HorizontalTopBottom) {
+ physical_space_->width_direction_triggers_scrollbar_ = inline_triggers;
+ physical_space_->height_direction_triggers_scrollbar_ = block_triggers;
+ } else {
+ physical_space_->width_direction_triggers_scrollbar_ = block_triggers;
+ physical_space_->height_direction_triggers_scrollbar_ = inline_triggers;
+ }
+}
+
+void NGConstraintSpace::SetFixedSize(bool inline_fixed, bool block_fixed) {
+ if (writing_mode_ == HorizontalTopBottom) {
+ physical_space_->fixed_width_ = inline_fixed;
+ physical_space_->fixed_height_ = block_fixed;
+ } else {
+ physical_space_->fixed_width_ = block_fixed;
+ physical_space_->fixed_height_ = inline_fixed;
+ }
+}
+
+void NGConstraintSpace::SetFragmentationType(NGFragmentationType type) {
+ if (writing_mode_ == HorizontalTopBottom) {
+ DCHECK_EQ(static_cast<NGFragmentationType>(
+ physical_space_->width_direction_fragmentation_type_),
+ FragmentNone);
+ physical_space_->height_direction_fragmentation_type_ = type;
+ } else {
+ DCHECK_EQ(static_cast<NGFragmentationType>(
+ physical_space_->height_direction_fragmentation_type_),
+ FragmentNone);
+ physical_space_->width_direction_triggers_scrollbar_ = type;
+ }
+}
+
+void NGConstraintSpace::SetIsNewFormattingContext(bool is_new_fc) {
+ physical_space_->is_new_fc_ = is_new_fc;
+}
+
NGConstraintSpace* NGConstraintSpace::ChildSpace(
const ComputedStyle* style) const {
return new NGConstraintSpace(FromPlatformWritingMode(style->getWritingMode()),
@@ -152,8 +192,8 @@
return String::format("%s,%s %sx%s",
offset_.inline_offset.toString().ascii().data(),
offset_.block_offset.toString().ascii().data(),
- AvailableSize().inline_size.toString().ascii().data(),
- AvailableSize().block_size.toString().ascii().data());
+ size_.inline_size.toString().ascii().data(),
+ size_.block_size.toString().ascii().data());
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698