Index: Source/web/WebOptionElement.cpp |
diff --git a/Source/web/WebOptionElement.cpp b/Source/web/WebOptionElement.cpp |
index a09dd0fac2138981df60f177576692deed2ef045..d1f156295f1e958808af0b5b44a26d9ffac21e4b 100644 |
--- a/Source/web/WebOptionElement.cpp |
+++ b/Source/web/WebOptionElement.cpp |
@@ -72,18 +72,18 @@ bool WebOptionElement::isEnabled() const |
return !(constUnwrap<HTMLOptionElement>()->isDisabledFormControl()); |
} |
-WebOptionElement::WebOptionElement(const PassRefPtr<HTMLOptionElement>& elem) |
+WebOptionElement::WebOptionElement(const PassRefPtrWillBeRawPtr<HTMLOptionElement>& elem) |
: WebElement(elem) |
{ |
} |
-WebOptionElement& WebOptionElement::operator=(const PassRefPtr<HTMLOptionElement>& elem) |
+WebOptionElement& WebOptionElement::operator=(const PassRefPtrWillBeRawPtr<HTMLOptionElement>& elem) |
{ |
m_private = elem; |
return *this; |
} |
-WebOptionElement::operator PassRefPtr<HTMLOptionElement>() const |
+WebOptionElement::operator PassRefPtrWillBeRawPtr<HTMLOptionElement>() const |
{ |
return toHTMLOptionElement(m_private.get()); |
} |