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

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

Issue 2882373002: Rename StyleRareInheritedData::indent_ to text_indent_. (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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareInheritedData.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/StyleRareInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
index a12aab2d47b7912d099e0aa5de5e34a604fa5423..5d003ceae551c24ce8223f79739e6a2034cf86cb 100644
--- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
@@ -64,7 +64,7 @@ static_assert(sizeof(StyleRareInheritedData) <=
StyleRareInheritedData::StyleRareInheritedData()
: list_style_image_(ComputedStyle::InitialListStyleImage()),
text_stroke_width_(ComputedStyle::InitialTextStrokeWidth()),
- indent_(ComputedStyle::InitialTextIndent()),
+ text_indent_(ComputedStyle::InitialTextIndent()),
effective_zoom_(ComputedStyle::InitialZoom()),
widows_(ComputedStyle::InitialWidows()),
orphans_(ComputedStyle::InitialOrphans()),
@@ -127,7 +127,7 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
text_shadow_(o.text_shadow_),
highlight_(o.highlight_),
cursor_data_(o.cursor_data_),
- indent_(o.indent_),
+ text_indent_(o.text_indent_),
effective_zoom_(o.effective_zoom_),
widows_(o.widows_),
orphans_(o.orphans_),
@@ -200,7 +200,8 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const {
visited_link_caret_color_ == o.visited_link_caret_color_ &&
tap_highlight_color_ == o.tap_highlight_color_ &&
ShadowDataEquivalent(o) && highlight_ == o.highlight_ &&
- DataEquivalent(cursor_data_, o.cursor_data_) && indent_ == o.indent_ &&
+ DataEquivalent(cursor_data_, o.cursor_data_) &&
+ text_indent_ == o.text_indent_ &&
effective_zoom_ == o.effective_zoom_ && widows_ == o.widows_ &&
orphans_ == o.orphans_ &&
text_stroke_color_is_current_color_ ==
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698