Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Unified Diff: Source/web/WebSelectElement.cpp

Issue 270573008: Oilpan: Prepare to support garbage-collected Node in WebNode hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add FIXME comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebSearchableFormData.cpp ('k') | Source/web/WebSocketImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSelectElement.cpp
diff --git a/Source/web/WebSelectElement.cpp b/Source/web/WebSelectElement.cpp
index 1dec34a1651206ab595e1a0ee08ecd29ff19a8b7..ec0c8ce005314a96efd00cf259cf3d1301c54052 100644
--- a/Source/web/WebSelectElement.cpp
+++ b/Source/web/WebSelectElement.cpp
@@ -51,18 +51,18 @@ WebVector<WebElement> WebSelectElement::listItems() const
return items;
}
-WebSelectElement::WebSelectElement(const PassRefPtr<HTMLSelectElement>& element)
+WebSelectElement::WebSelectElement(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element)
: WebFormControlElement(element)
{
}
-WebSelectElement& WebSelectElement::operator=(const PassRefPtr<HTMLSelectElement>& element)
+WebSelectElement& WebSelectElement::operator=(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element)
{
m_private = element;
return *this;
}
-WebSelectElement::operator PassRefPtr<HTMLSelectElement>() const
+WebSelectElement::operator PassRefPtrWillBeRawPtr<HTMLSelectElement>() const
{
return toHTMLSelectElement(m_private.get());
}
« no previous file with comments | « Source/web/WebSearchableFormData.cpp ('k') | Source/web/WebSocketImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698