| OLD | NEW |
| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 const StyleRareNonInheritedData& o) | 136 const StyleRareNonInheritedData& o) |
| 137 : RefCounted<StyleRareNonInheritedData>(), | 137 : RefCounted<StyleRareNonInheritedData>(), |
| 138 opacity_(o.opacity_), | 138 opacity_(o.opacity_), |
| 139 perspective_(o.perspective_), | 139 perspective_(o.perspective_), |
| 140 shape_image_threshold_(o.shape_image_threshold_), | 140 shape_image_threshold_(o.shape_image_threshold_), |
| 141 order_(o.order_), | 141 order_(o.order_), |
| 142 perspective_origin_(o.perspective_origin_), | 142 perspective_origin_(o.perspective_origin_), |
| 143 object_position_(o.object_position_), | 143 object_position_(o.object_position_), |
| 144 line_clamp_(o.line_clamp_), | 144 line_clamp_(o.line_clamp_), |
| 145 draggable_region_mode_(o.draggable_region_mode_), | 145 draggable_region_mode_(o.draggable_region_mode_), |
| 146 deprecated_flexible_box_data_data_(o.deprecated_flexible_box_data_data_), | 146 deprecated_flexible_box_data_(o.deprecated_flexible_box_data_), |
| 147 flexible_box_data_(o.flexible_box_data_), | 147 flexible_box_data_(o.flexible_box_data_), |
| 148 multi_col_data_(o.multi_col_data_), | 148 multi_col_data_(o.multi_col_data_), |
| 149 transform_data_(o.transform_data_), | 149 transform_data_(o.transform_data_), |
| 150 will_change_data_(o.will_change_data_), | 150 will_change_data_(o.will_change_data_), |
| 151 filter_(o.filter_), | 151 filter_(o.filter_), |
| 152 backdrop_filter_(o.backdrop_filter_), | 152 backdrop_filter_(o.backdrop_filter_), |
| 153 grid_data_(o.grid_data_), | 153 grid_data_(o.grid_data_), |
| 154 grid_item_data_(o.grid_item_data_), | 154 grid_item_data_(o.grid_item_data_), |
| 155 scroll_snap_data_(o.scroll_snap_data_), | 155 scroll_snap_data_(o.scroll_snap_data_), |
| 156 content_(o.content_ ? o.content_->Clone() : nullptr), | 156 content_(o.content_ ? o.content_->Clone() : nullptr), |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 StyleRareNonInheritedData::~StyleRareNonInheritedData() {} | 229 StyleRareNonInheritedData::~StyleRareNonInheritedData() {} |
| 230 | 230 |
| 231 bool StyleRareNonInheritedData::operator==( | 231 bool StyleRareNonInheritedData::operator==( |
| 232 const StyleRareNonInheritedData& o) const { | 232 const StyleRareNonInheritedData& o) const { |
| 233 return opacity_ == o.opacity_ && perspective_ == o.perspective_ && | 233 return opacity_ == o.opacity_ && perspective_ == o.perspective_ && |
| 234 shape_image_threshold_ == o.shape_image_threshold_ && | 234 shape_image_threshold_ == o.shape_image_threshold_ && |
| 235 order_ == o.order_ && perspective_origin_ == o.perspective_origin_ && | 235 order_ == o.order_ && perspective_origin_ == o.perspective_origin_ && |
| 236 object_position_ == o.object_position_ && | 236 object_position_ == o.object_position_ && |
| 237 line_clamp_ == o.line_clamp_ && | 237 line_clamp_ == o.line_clamp_ && |
| 238 draggable_region_mode_ == o.draggable_region_mode_ && | 238 draggable_region_mode_ == o.draggable_region_mode_ && |
| 239 deprecated_flexible_box_data_data_ == | 239 deprecated_flexible_box_data_ == o.deprecated_flexible_box_data_ && |
| 240 o.deprecated_flexible_box_data_data_ && | |
| 241 flexible_box_data_ == o.flexible_box_data_ && | 240 flexible_box_data_ == o.flexible_box_data_ && |
| 242 multi_col_data_ == o.multi_col_data_ && | 241 multi_col_data_ == o.multi_col_data_ && |
| 243 transform_data_ == o.transform_data_ && | 242 transform_data_ == o.transform_data_ && |
| 244 will_change_data_ == o.will_change_data_ && filter_ == o.filter_ && | 243 will_change_data_ == o.will_change_data_ && filter_ == o.filter_ && |
| 245 backdrop_filter_ == o.backdrop_filter_ && grid_data_ == o.grid_data_ && | 244 backdrop_filter_ == o.backdrop_filter_ && grid_data_ == o.grid_data_ && |
| 246 grid_item_data_ == o.grid_item_data_ && | 245 grid_item_data_ == o.grid_item_data_ && |
| 247 scroll_snap_data_ == o.scroll_snap_data_ && | 246 scroll_snap_data_ == o.scroll_snap_data_ && |
| 248 DataEquivalent(content_, o.content_) && | 247 DataEquivalent(content_, o.content_) && |
| 249 DataEquivalent(counter_directives_, o.counter_directives_) && | 248 DataEquivalent(counter_directives_, o.counter_directives_) && |
| 250 DataEquivalent(box_shadow_, o.box_shadow_) && | 249 DataEquivalent(box_shadow_, o.box_shadow_) && |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 requires_accelerated_compositing_for_external_reasons_ == | 295 requires_accelerated_compositing_for_external_reasons_ == |
| 297 o.requires_accelerated_compositing_for_external_reasons_ && | 296 o.requires_accelerated_compositing_for_external_reasons_ && |
| 298 has_inline_transform_ == o.has_inline_transform_ && | 297 has_inline_transform_ == o.has_inline_transform_ && |
| 299 resize_ == o.resize_ && | 298 resize_ == o.resize_ && |
| 300 has_compositor_proxy_ == o.has_compositor_proxy_ && | 299 has_compositor_proxy_ == o.has_compositor_proxy_ && |
| 301 has_author_background_ == o.has_author_background_ && | 300 has_author_background_ == o.has_author_background_ && |
| 302 has_author_border_ == o.has_author_border_; | 301 has_author_border_ == o.has_author_border_; |
| 303 } | 302 } |
| 304 | 303 |
| 305 } // namespace blink | 304 } // namespace blink |
| OLD | NEW |