Index: Source/core/html/HTMLOptGroupElement.h |
diff --git a/Source/core/html/HTMLOptGroupElement.h b/Source/core/html/HTMLOptGroupElement.h |
index 8bd5f89afb52f86216169c80f784fff0f77a7f9a..2a6803dd246e7fe82945027b57789f71dc4e051c 100644 |
--- a/Source/core/html/HTMLOptGroupElement.h |
+++ b/Source/core/html/HTMLOptGroupElement.h |
@@ -54,14 +54,14 @@ private: |
virtual void detach(const AttachContext& = AttachContext()) override; |
// <optgroup> might not have a renderer so we manually manage a cached style. |
- void updateNonLayoutStyle(); |
- virtual LayoutStyle* nonRendererStyle() const override; |
- virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override; |
+ void updateNonComputedStyle(); |
+ virtual ComputedStyle* nonLayoutObjectComputedStyle() const override; |
+ virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override; |
void updateGroupLabel(); |
void recalcSelectOptions(); |
- RefPtr<LayoutStyle> m_style; |
+ RefPtr<ComputedStyle> m_style; |
}; |
} // namespace blink |