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

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

Issue 2845463003: Rename StyleInheritedData members. (Closed)
Patch Set: Rebase Created 3 years, 8 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 | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 221444d69c8ce5ad0b0c6ca7ba2efdf2f60a16a8..a8cafcc846473538f3b96e68ba13a35536a8cba2 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -191,7 +191,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
// inherited attributes
DataRef<StyleRareInheritedData> rare_inherited_data_;
- DataRef<StyleInheritedData> style_inherited_data_;
+ DataRef<StyleInheritedData> inherited_data_;
// list of associated pseudo styles
std::unique_ptr<PseudoStyleCache> cached_pseudo_styles_;
@@ -2295,7 +2295,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
}
float TextAutosizingMultiplier() const {
- return style_inherited_data_->text_autosizing_multiplier;
+ return inherited_data_->text_autosizing_multiplier_;
}
void SetTextAutosizingMultiplier(float);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698