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

Unified Diff: third_party/WebKit/Source/core/style/StyleInheritedData.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
Index: third_party/WebKit/Source/core/style/StyleInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleInheritedData.h b/third_party/WebKit/Source/core/style/StyleInheritedData.h
index ebcc889f1a07228a5f87bce5d45770d0ac4672a3..32a5588b8ff466e6d904010959f1a880a0285362 100644
--- a/third_party/WebKit/Source/core/style/StyleInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleInheritedData.h
@@ -50,17 +50,17 @@ class CORE_EXPORT StyleInheritedData : public RefCounted<StyleInheritedData> {
bool operator==(const StyleInheritedData&) const;
bool operator!=(const StyleInheritedData& o) const { return !(*this == o); }
- short horizontal_border_spacing;
- short vertical_border_spacing;
+ short horizontal_border_spacing_;
+ short vertical_border_spacing_;
// could be packed in a short but doesn't
// make a difference currently because of padding
- Length line_height;
+ Length line_height_;
- Font font;
- Color color;
- Color visited_link_color;
- float text_autosizing_multiplier;
+ Font font_;
+ Color color_;
+ Color visited_link_color_;
+ float text_autosizing_multiplier_;
private:
StyleInheritedData();
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/style/StyleInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698