Index: Source/core/html/shadow/TextFieldDecorationElement.cpp |
diff --git a/Source/core/html/shadow/TextFieldDecorationElement.cpp b/Source/core/html/shadow/TextFieldDecorationElement.cpp |
index d20fb0d86d0abc2d3bca248d969b93a017e4e2ea..f281d438896f3f98857c8b7a1811cd03e9253d5d 100644 |
--- a/Source/core/html/shadow/TextFieldDecorationElement.cpp |
+++ b/Source/core/html/shadow/TextFieldDecorationElement.cpp |
@@ -169,16 +169,16 @@ RenderObject* TextFieldDecorationElement::createRenderer(RenderArena* arena, Ren |
return image; |
} |
-void TextFieldDecorationElement::attach() |
+void TextFieldDecorationElement::attach(const AttachContext& context) |
{ |
- HTMLDivElement::attach(); |
+ HTMLDivElement::attach(context); |
updateImage(); |
} |
-void TextFieldDecorationElement::detach() |
+void TextFieldDecorationElement::detach(const AttachContext& context) |
{ |
m_textFieldDecorator->willDetach(hostInput()); |
- HTMLDivElement::detach(); |
+ HTMLDivElement::detach(context); |
} |
bool TextFieldDecorationElement::isMouseFocusable() const |