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

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

Issue 2922323002: Remove extraneous "data_" on RareNonInheritedData member. (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 73d84116dfaaf113c2a15c1cf7c63ba4c306ca16..fb6615bcb9bf3e46bbe9df34f18ecd6d97b5d4ef 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -143,7 +143,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(
object_position_(o.object_position_),
line_clamp_(o.line_clamp_),
draggable_region_mode_(o.draggable_region_mode_),
- deprecated_flexible_box_data_data_(o.deprecated_flexible_box_data_data_),
+ deprecated_flexible_box_data_(o.deprecated_flexible_box_data_),
flexible_box_data_(o.flexible_box_data_),
multi_col_data_(o.multi_col_data_),
transform_data_(o.transform_data_),
@@ -236,8 +236,7 @@ bool StyleRareNonInheritedData::operator==(
object_position_ == o.object_position_ &&
line_clamp_ == o.line_clamp_ &&
draggable_region_mode_ == o.draggable_region_mode_ &&
- deprecated_flexible_box_data_data_ ==
- o.deprecated_flexible_box_data_data_ &&
+ deprecated_flexible_box_data_ == o.deprecated_flexible_box_data_ &&
flexible_box_data_ == o.flexible_box_data_ &&
multi_col_data_ == o.multi_col_data_ &&
transform_data_ == o.transform_data_ &&
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698