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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h

Issue 2446243003: [LayoutNG] Add NGConstraintSpaceBuilder class. (Closed)
Patch Set: it's -> its \o/ Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
index 5d6a335db42c1c9924b8c0d067bcbf1bf45cbf18..9ee6640ae281ec7c87024a73cae1b4cdd6f0d155 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
@@ -60,6 +60,16 @@ struct NGExclusion : public GarbageCollected<NGExclusion> {
class CORE_EXPORT NGPhysicalConstraintSpace final
: public GarbageCollectedFinalized<NGPhysicalConstraintSpace> {
public:
+ NGPhysicalConstraintSpace(
+ NGPhysicalSize container_size,
+ bool fixed_width,
+ bool fixed_height,
+ bool width_direction_triggers_scrollbar,
+ bool height_direction_triggers_scrollbar,
+ NGFragmentationType width_direction_fragmentation_type,
+ NGFragmentationType height_direction_fragmentation_type,
+ bool is_new_fc);
+
NGPhysicalConstraintSpace();
NGPhysicalConstraintSpace(NGPhysicalSize);

Powered by Google App Engine
This is Rietveld 408576698