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

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

Issue 2363743006: Remove redundant copy constructor for NGPhysicalConstraintSpace (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
index 8ac25bd81469cfc326898d9713ea662ccbb1b702..1b24d8c7f0c7073a26c5c717cc803ffec23a63c3 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.cc
@@ -24,19 +24,6 @@ NGPhysicalConstraintSpace::NGPhysicalConstraintSpace()
width_direction_fragmentation_type_(FragmentNone),
height_direction_fragmentation_type_(FragmentNone) {}
-NGPhysicalConstraintSpace::NGPhysicalConstraintSpace(
- const NGPhysicalConstraintSpace& other)
- : fixed_width_(other.fixed_width_),
- fixed_height_(other.fixed_height_),
- width_direction_triggers_scrollbar_(
- other.width_direction_triggers_scrollbar_),
- height_direction_triggers_scrollbar_(
- other.height_direction_triggers_scrollbar_),
- width_direction_fragmentation_type_(
- other.width_direction_fragmentation_type_),
- height_direction_fragmentation_type_(
- other.height_direction_fragmentation_type_) {}
-
void NGPhysicalConstraintSpace::AddExclusion(const NGExclusion exclusion,
unsigned options) {
exclusions_.append(exclusion);
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698