Index: Source/core/css/resolver/StyleResolverState.h |
diff --git a/Source/core/css/resolver/StyleResolverState.h b/Source/core/css/resolver/StyleResolverState.h |
index a23f9da7bd9f7b7d7bc7d54b5d91a7d452de4c01..08b115029a2e3e2ecb98fd4e3924d34c3c93c8b8 100644 |
--- a/Source/core/css/resolver/StyleResolverState.h |
+++ b/Source/core/css/resolver/StyleResolverState.h |
@@ -42,8 +42,8 @@ class FontDescription; |
class StyleRule; |
class StyleResolverState { |
-STACK_ALLOCATED(); |
-WTF_MAKE_NONCOPYABLE(StyleResolverState); |
+ STACK_ALLOCATED(); |
+ WTF_MAKE_NONCOPYABLE(StyleResolverState); |
public: |
StyleResolverState(Document&, Element*, RenderStyle* parentStyle = 0); |
~StyleResolverState(); |
@@ -158,7 +158,7 @@ private: |
bool m_applyPropertyToRegularStyle; |
bool m_applyPropertyToVisitedLinkStyle; |
- CSSValue* m_lineHeightValue; |
+ RawPtrWillBeMember<CSSValue> m_lineHeightValue; |
FontBuilder m_fontBuilder; |
@@ -170,7 +170,7 @@ private: |
CSSToStyleMap m_styleMap; |
Vector<AtomicString> m_contentAttrValues; |
- StyleRule* m_currentRule; |
+ RawPtrWillBeMember<StyleRule> m_currentRule; |
}; |
} // namespace WebCore |