Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/EditingStyle.h |
| diff --git a/third_party/WebKit/Source/core/editing/EditingStyle.h b/third_party/WebKit/Source/core/editing/EditingStyle.h |
| index d2b8baf4ee01b54b3262659e717bc7a2c6dd90c4..98512991e457f92e8c839ab1a6aeb2a69302449e 100644 |
| --- a/third_party/WebKit/Source/core/editing/EditingStyle.h |
| +++ b/third_party/WebKit/Source/core/editing/EditingStyle.h |
| @@ -145,7 +145,7 @@ public: |
| DECLARE_TRACE(); |
| private: |
| - EditingStyle(); |
| + EditingStyle() { } |
|
yosin_UTC9
2016/06/06 01:46:33
nit: s/{ }/= default;/
|
| EditingStyle(ContainerNode*, PropertiesToInclude); |
| EditingStyle(const Position&, PropertiesToInclude); |
| explicit EditingStyle(const StylePropertySet*); |
| @@ -161,8 +161,8 @@ private: |
| void mergeStyle(const StylePropertySet*, CSSPropertyOverrideMode); |
| Member<MutableStylePropertySet> m_mutableStyle; |
| - bool m_isMonospaceFont; |
| - float m_fontSizeDelta; |
| + bool m_isMonospaceFont = false; |
| + float m_fontSizeDelta = NoFontDelta; |
| bool m_isVerticalAlign = false; |
| friend class HTMLElementEquivalent; |