summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/web/WebLabelElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/WebLabelElement.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/web/WebLabelElement.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/web/WebLabelElement.cpp b/chromium/third_party/WebKit/Source/web/WebLabelElement.cpp
index 794a3e14030..97ee0da4bde 100644
--- a/chromium/third_party/WebKit/Source/web/WebLabelElement.cpp
+++ b/chromium/third_party/WebKit/Source/web/WebLabelElement.cpp
@@ -29,9 +29,9 @@
*/
#include "config.h"
-#include "WebLabelElement.h"
+#include "public/web/WebLabelElement.h"
-#include "HTMLNames.h"
+#include "core/HTMLNames.h"
#include "core/html/HTMLLabelElement.h"
#include "public/platform/WebString.h"
#include "wtf/PassRefPtr.h"
@@ -45,18 +45,18 @@ WebElement WebLabelElement::correspondingControl()
return WebElement(unwrap<HTMLLabelElement>()->control());
}
-WebLabelElement::WebLabelElement(const PassRefPtr<HTMLLabelElement>& elem)
+WebLabelElement::WebLabelElement(const PassRefPtrWillBeRawPtr<HTMLLabelElement>& elem)
: WebElement(elem)
{
}
-WebLabelElement& WebLabelElement::operator=(const PassRefPtr<HTMLLabelElement>& elem)
+WebLabelElement& WebLabelElement::operator=(const PassRefPtrWillBeRawPtr<HTMLLabelElement>& elem)
{
m_private = elem;
return *this;
}
-WebLabelElement::operator PassRefPtr<HTMLLabelElement>() const
+WebLabelElement::operator PassRefPtrWillBeRawPtr<HTMLLabelElement>() const
{
return toHTMLLabelElement(m_private.get());
}