| 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();
|
|
|