| Index: third_party/WebKit/Source/web/WebLabelElement.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebLabelElement.cpp b/third_party/WebKit/Source/web/WebLabelElement.cpp
|
| index e8ff88b37c8545da145578b931546a0da964ee06..8737c0b853f7867f3d97c916df54b795096ba299 100644
|
| --- a/third_party/WebKit/Source/web/WebLabelElement.cpp
|
| +++ b/third_party/WebKit/Source/web/WebLabelElement.cpp
|
| @@ -42,20 +42,20 @@ WebElement WebLabelElement::correspondingControl()
|
| return WebElement(unwrap<HTMLLabelElement>()->control());
|
| }
|
|
|
| -WebLabelElement::WebLabelElement(const RawPtr<HTMLLabelElement>& elem)
|
| +WebLabelElement::WebLabelElement(HTMLLabelElement* elem)
|
| : WebElement(elem)
|
| {
|
| }
|
|
|
| DEFINE_WEB_NODE_TYPE_CASTS(WebLabelElement, isHTMLLabelElement(constUnwrap<Node>()));
|
|
|
| -WebLabelElement& WebLabelElement::operator=(const RawPtr<HTMLLabelElement>& elem)
|
| +WebLabelElement& WebLabelElement::operator=(HTMLLabelElement* elem)
|
| {
|
| m_private = elem;
|
| return *this;
|
| }
|
|
|
| -WebLabelElement::operator RawPtr<HTMLLabelElement>() const
|
| +WebLabelElement::operator HTMLLabelElement*() const
|
| {
|
| return toHTMLLabelElement(m_private.get());
|
| }
|
|
|