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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 2893243002: Add missing data members in StyleRareNonInheritedData copy constructor. (Closed)
Patch Set: Rebase Created 3 years, 7 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/style/StyleRareNonInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
index ecc25a64c31c6cc8775f71fab0872cd5df04d66f..0d6066afa36a3342c642373550e070155b689a4c 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -177,6 +177,9 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(
visited_link_border_right_color_(o.visited_link_border_right_color_),
visited_link_border_top_color_(o.visited_link_border_top_color_),
visited_link_border_bottom_color_(o.visited_link_border_bottom_color_),
+ callback_selectors_(o.callback_selectors_),
+ paint_images_(o.paint_images_ ? new PaintImages(*o.paint_images_)
+ : nullptr),
variables_(o.variables_ ? o.variables_->Copy() : nullptr),
align_content_(o.align_content_),
align_items_(o.align_items_),

Powered by Google App Engine
This is Rietveld 408576698