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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 outline_(o.outline_), 170 outline_(o.outline_),
171 text_decoration_color_(o.text_decoration_color_), 171 text_decoration_color_(o.text_decoration_color_),
172 visited_link_text_decoration_color_( 172 visited_link_text_decoration_color_(
173 o.visited_link_text_decoration_color_), 173 o.visited_link_text_decoration_color_),
174 visited_link_background_color_(o.visited_link_background_color_), 174 visited_link_background_color_(o.visited_link_background_color_),
175 visited_link_outline_color_(o.visited_link_outline_color_), 175 visited_link_outline_color_(o.visited_link_outline_color_),
176 visited_link_border_left_color_(o.visited_link_border_left_color_), 176 visited_link_border_left_color_(o.visited_link_border_left_color_),
177 visited_link_border_right_color_(o.visited_link_border_right_color_), 177 visited_link_border_right_color_(o.visited_link_border_right_color_),
178 visited_link_border_top_color_(o.visited_link_border_top_color_), 178 visited_link_border_top_color_(o.visited_link_border_top_color_),
179 visited_link_border_bottom_color_(o.visited_link_border_bottom_color_), 179 visited_link_border_bottom_color_(o.visited_link_border_bottom_color_),
180 callback_selectors_(o.callback_selectors_),
181 paint_images_(o.paint_images_ ? new PaintImages(*o.paint_images_)
182 : nullptr),
180 variables_(o.variables_ ? o.variables_->Copy() : nullptr), 183 variables_(o.variables_ ? o.variables_->Copy() : nullptr),
181 align_content_(o.align_content_), 184 align_content_(o.align_content_),
182 align_items_(o.align_items_), 185 align_items_(o.align_items_),
183 align_self_(o.align_self_), 186 align_self_(o.align_self_),
184 justify_content_(o.justify_content_), 187 justify_content_(o.justify_content_),
185 justify_items_(o.justify_items_), 188 justify_items_(o.justify_items_),
186 justify_self_(o.justify_self_), 189 justify_self_(o.justify_self_),
187 page_size_type_(o.page_size_type_), 190 page_size_type_(o.page_size_type_),
188 transform_style3d_(o.transform_style3d_), 191 transform_style3d_(o.transform_style3d_),
189 backface_visibility_(o.backface_visibility_), 192 backface_visibility_(o.backface_visibility_),
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 const StyleRareNonInheritedData& o) const { 351 const StyleRareNonInheritedData& o) const {
349 return DataEquivalent(shape_outside_, o.shape_outside_); 352 return DataEquivalent(shape_outside_, o.shape_outside_);
350 } 353 }
351 354
352 bool StyleRareNonInheritedData::ClipPathDataEquivalent( 355 bool StyleRareNonInheritedData::ClipPathDataEquivalent(
353 const StyleRareNonInheritedData& o) const { 356 const StyleRareNonInheritedData& o) const {
354 return DataEquivalent(clip_path_, o.clip_path_); 357 return DataEquivalent(clip_path_, o.clip_path_);
355 } 358 }
356 359
357 } // namespace blink 360 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698