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

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

Issue 2911403002: Rename StyleRareNonInheritedData members. (Closed)
Patch Set: 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/ComputedStyle.cpp
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
index 3e9803db0154062993c53218c7e93b3124928e05..ee2d2e9652d9111b135ec55afd4b9b8cbe21f882 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -560,14 +560,14 @@ bool ComputedStyle::DiffNeedsFullLayoutAndPaintInvalidation(
if (rare_non_inherited_data_.Get() != other.rare_non_inherited_data_.Get()) {
if (rare_non_inherited_data_->appearance_ !=
other.rare_non_inherited_data_->appearance_ ||
- rare_non_inherited_data_->margin_before_collapse !=
- other.rare_non_inherited_data_->margin_before_collapse ||
- rare_non_inherited_data_->margin_after_collapse !=
- other.rare_non_inherited_data_->margin_after_collapse ||
- rare_non_inherited_data_->line_clamp !=
- other.rare_non_inherited_data_->line_clamp ||
- rare_non_inherited_data_->text_overflow !=
- other.rare_non_inherited_data_->text_overflow ||
+ rare_non_inherited_data_->margin_before_collapse_ !=
+ other.rare_non_inherited_data_->margin_before_collapse_ ||
+ rare_non_inherited_data_->margin_after_collapse_ !=
+ other.rare_non_inherited_data_->margin_after_collapse_ ||
+ rare_non_inherited_data_->line_clamp_ !=
+ other.rare_non_inherited_data_->line_clamp_ ||
+ rare_non_inherited_data_->text_overflow_ !=
+ other.rare_non_inherited_data_->text_overflow_ ||
rare_non_inherited_data_->shape_margin_ !=
other.rare_non_inherited_data_->shape_margin_ ||
rare_non_inherited_data_->order_ !=
@@ -735,8 +735,8 @@ bool ComputedStyle::DiffNeedsPaintInvalidationObject(
return true;
if (rare_non_inherited_data_.Get() != other.rare_non_inherited_data_.Get()) {
- if (rare_non_inherited_data_->user_drag !=
- other.rare_non_inherited_data_->user_drag ||
+ if (rare_non_inherited_data_->user_drag_ !=
+ other.rare_non_inherited_data_->user_drag_ ||
rare_non_inherited_data_->object_fit_ !=
other.rare_non_inherited_data_->object_fit_ ||
rare_non_inherited_data_->object_position_ !=
@@ -842,8 +842,8 @@ void ComputedStyle::UpdatePropertySpecificDifferences(
}
if (rare_non_inherited_data_.Get() != other.rare_non_inherited_data_.Get()) {
- if (rare_non_inherited_data_->opacity !=
- other.rare_non_inherited_data_->opacity)
+ if (rare_non_inherited_data_->opacity_ !=
+ other.rare_non_inherited_data_->opacity_)
diff.SetOpacityChanged();
}
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698