| 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, 2009, 2010 Apple Inc. All rights | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights |
| 4 * reserved. | 4 * reserved. |
| 5 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 5 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 } | 109 } |
| 110 | 110 |
| 111 PassRefPtr<ComputedStyle> ComputedStyle::Clone(const ComputedStyle& other) { | 111 PassRefPtr<ComputedStyle> ComputedStyle::Clone(const ComputedStyle& other) { |
| 112 return AdoptRef(new ComputedStyle(other)); | 112 return AdoptRef(new ComputedStyle(other)); |
| 113 } | 113 } |
| 114 | 114 |
| 115 ALWAYS_INLINE ComputedStyle::ComputedStyle() | 115 ALWAYS_INLINE ComputedStyle::ComputedStyle() |
| 116 : ComputedStyleBase(), RefCounted<ComputedStyle>() { | 116 : ComputedStyleBase(), RefCounted<ComputedStyle>() { |
| 117 box_data_.Init(); | 117 box_data_.Init(); |
| 118 visual_data_.Init(); | 118 visual_data_.Init(); |
| 119 background_data_.Init(); |
| 119 rare_non_inherited_data_.Init(); | 120 rare_non_inherited_data_.Init(); |
| 120 rare_non_inherited_data_.Access()->deprecated_flexible_box_.Init(); | 121 rare_non_inherited_data_.Access()->deprecated_flexible_box_.Init(); |
| 121 rare_non_inherited_data_.Access()->flexible_box_.Init(); | 122 rare_non_inherited_data_.Access()->flexible_box_.Init(); |
| 122 rare_non_inherited_data_.Access()->multi_col_.Init(); | 123 rare_non_inherited_data_.Access()->multi_col_.Init(); |
| 123 rare_non_inherited_data_.Access()->transform_.Init(); | 124 rare_non_inherited_data_.Access()->transform_.Init(); |
| 124 rare_non_inherited_data_.Access()->will_change_.Init(); | 125 rare_non_inherited_data_.Access()->will_change_.Init(); |
| 125 rare_non_inherited_data_.Access()->filter_.Init(); | 126 rare_non_inherited_data_.Access()->filter_.Init(); |
| 126 rare_non_inherited_data_.Access()->backdrop_filter_.Init(); | 127 rare_non_inherited_data_.Access()->backdrop_filter_.Init(); |
| 127 rare_non_inherited_data_.Access()->grid_.Init(); | 128 rare_non_inherited_data_.Access()->grid_.Init(); |
| 128 rare_non_inherited_data_.Access()->grid_item_.Init(); | 129 rare_non_inherited_data_.Access()->grid_item_.Init(); |
| 129 rare_non_inherited_data_.Access()->scroll_snap_.Init(); | 130 rare_non_inherited_data_.Access()->scroll_snap_.Init(); |
| 130 rare_inherited_data_.Init(); | 131 rare_inherited_data_.Init(); |
| 131 inherited_data_.Init(); | 132 inherited_data_.Init(); |
| 132 svg_style_.Init(); | 133 svg_style_.Init(); |
| 133 } | 134 } |
| 134 | 135 |
| 135 ALWAYS_INLINE ComputedStyle::ComputedStyle(const ComputedStyle& o) | 136 ALWAYS_INLINE ComputedStyle::ComputedStyle(const ComputedStyle& o) |
| 136 : ComputedStyleBase(o), | 137 : ComputedStyleBase(o), |
| 137 RefCounted<ComputedStyle>(), | 138 RefCounted<ComputedStyle>(), |
| 138 box_data_(o.box_data_), | 139 box_data_(o.box_data_), |
| 139 visual_data_(o.visual_data_), | 140 visual_data_(o.visual_data_), |
| 141 background_data_(o.background_data_), |
| 140 rare_non_inherited_data_(o.rare_non_inherited_data_), | 142 rare_non_inherited_data_(o.rare_non_inherited_data_), |
| 141 rare_inherited_data_(o.rare_inherited_data_), | 143 rare_inherited_data_(o.rare_inherited_data_), |
| 142 inherited_data_(o.inherited_data_), | 144 inherited_data_(o.inherited_data_), |
| 143 svg_style_(o.svg_style_) {} | 145 svg_style_(o.svg_style_) {} |
| 144 | 146 |
| 145 static StyleRecalcChange DiffPseudoStyles(const ComputedStyle& old_style, | 147 static StyleRecalcChange DiffPseudoStyles(const ComputedStyle& old_style, |
| 146 const ComputedStyle& new_style) { | 148 const ComputedStyle& new_style) { |
| 147 // If the pseudoStyles have changed, ensure layoutObject triggers setStyle. | 149 // If the pseudoStyles have changed, ensure layoutObject triggers setStyle. |
| 148 if (!old_style.HasAnyPublicPseudoStyles() && | 150 if (!old_style.HasAnyPublicPseudoStyles() && |
| 149 !new_style.HasAnyPublicPseudoStyles()) | 151 !new_style.HasAnyPublicPseudoStyles()) |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 } | 326 } |
| 325 inherited_data_ = inherit_parent.inherited_data_; | 327 inherited_data_ = inherit_parent.inherited_data_; |
| 326 if (svg_style_ != inherit_parent.svg_style_) | 328 if (svg_style_ != inherit_parent.svg_style_) |
| 327 svg_style_.Access()->InheritFrom(inherit_parent.svg_style_.Get()); | 329 svg_style_.Access()->InheritFrom(inherit_parent.svg_style_.Get()); |
| 328 } | 330 } |
| 329 | 331 |
| 330 void ComputedStyle::CopyNonInheritedFromCached(const ComputedStyle& other) { | 332 void ComputedStyle::CopyNonInheritedFromCached(const ComputedStyle& other) { |
| 331 ComputedStyleBase::CopyNonInheritedFromCached(other); | 333 ComputedStyleBase::CopyNonInheritedFromCached(other); |
| 332 box_data_ = other.box_data_; | 334 box_data_ = other.box_data_; |
| 333 visual_data_ = other.visual_data_; | 335 visual_data_ = other.visual_data_; |
| 336 background_data_ = other.background_data_; |
| 334 rare_non_inherited_data_ = other.rare_non_inherited_data_; | 337 rare_non_inherited_data_ = other.rare_non_inherited_data_; |
| 335 | 338 |
| 336 // The flags are copied one-by-one because they contain | 339 // The flags are copied one-by-one because they contain |
| 337 // bunch of stuff other than real style data. | 340 // bunch of stuff other than real style data. |
| 338 // See comments for each skipped flag below. | 341 // See comments for each skipped flag below. |
| 339 | 342 |
| 340 // These are not generated in ComputedStyleBase | 343 // These are not generated in ComputedStyleBase |
| 341 SetHasViewportUnits(other.HasViewportUnits()); | 344 SetHasViewportUnits(other.HasViewportUnits()); |
| 342 SetHasRemUnitsInternal(other.HasRemUnits()); | 345 SetHasRemUnitsInternal(other.HasRemUnits()); |
| 343 | 346 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 | 468 |
| 466 bool ComputedStyle::LoadingCustomFontsEqual(const ComputedStyle& other) const { | 469 bool ComputedStyle::LoadingCustomFontsEqual(const ComputedStyle& other) const { |
| 467 return GetFont().LoadingCustomFonts() == other.GetFont().LoadingCustomFonts(); | 470 return GetFont().LoadingCustomFonts() == other.GetFont().LoadingCustomFonts(); |
| 468 } | 471 } |
| 469 | 472 |
| 470 bool ComputedStyle::NonInheritedEqual(const ComputedStyle& other) const { | 473 bool ComputedStyle::NonInheritedEqual(const ComputedStyle& other) const { |
| 471 // compare everything except the pseudoStyle pointer | 474 // compare everything except the pseudoStyle pointer |
| 472 return ComputedStyleBase::NonInheritedEqual(other) && | 475 return ComputedStyleBase::NonInheritedEqual(other) && |
| 473 box_data_ == other.box_data_ && | 476 box_data_ == other.box_data_ && |
| 474 visual_data_ == other.visual_data_ && | 477 visual_data_ == other.visual_data_ && |
| 478 background_data_ == other.background_data_ && |
| 475 rare_non_inherited_data_ == other.rare_non_inherited_data_ && | 479 rare_non_inherited_data_ == other.rare_non_inherited_data_ && |
| 476 svg_style_->NonInheritedEqual(*other.svg_style_); | 480 svg_style_->NonInheritedEqual(*other.svg_style_); |
| 477 } | 481 } |
| 478 | 482 |
| 479 bool ComputedStyle::InheritedDataShared(const ComputedStyle& other) const { | 483 bool ComputedStyle::InheritedDataShared(const ComputedStyle& other) const { |
| 480 // This is a fast check that only looks if the data structures are shared. | 484 // This is a fast check that only looks if the data structures are shared. |
| 481 // TODO(sashab): Should ComputedStyleBase have an inheritedDataShared method? | 485 // TODO(sashab): Should ComputedStyleBase have an inheritedDataShared method? |
| 482 return ComputedStyleBase::InheritedEqual(other) && | 486 return ComputedStyleBase::InheritedEqual(other) && |
| 483 inherited_data_.Get() == other.inherited_data_.Get() && | 487 inherited_data_.Get() == other.inherited_data_.Get() && |
| 484 svg_style_.Get() == other.svg_style_.Get() && | 488 svg_style_.Get() == other.svg_style_.Get() && |
| (...skipping 2005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2490 if (value < 0) | 2494 if (value < 0) |
| 2491 fvalue -= 0.5f; | 2495 fvalue -= 0.5f; |
| 2492 else | 2496 else |
| 2493 fvalue += 0.5f; | 2497 fvalue += 0.5f; |
| 2494 } | 2498 } |
| 2495 | 2499 |
| 2496 return RoundForImpreciseConversion<int>(fvalue / zoom_factor); | 2500 return RoundForImpreciseConversion<int>(fvalue / zoom_factor); |
| 2497 } | 2501 } |
| 2498 | 2502 |
| 2499 } // namespace blink | 2503 } // namespace blink |
| OLD | NEW |