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

Unified Diff: third_party/WebKit/Source/core/html/HTMLUnknownElement.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
Index: third_party/WebKit/Source/core/html/HTMLUnknownElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLUnknownElement.h b/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
index c9c1523c106b7c4827fd4dc20d248bed17252500..f181bbe41c09c1c9597df02948a3267a091b75f4 100644
--- a/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLUnknownElement.h
@@ -37,9 +37,9 @@ namespace blink {
class HTMLUnknownElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document)
+ static RawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document)
{
- return adoptRefWillBeNoop(new HTMLUnknownElement(tagName, document));
+ return new HTMLUnknownElement(tagName, document);
}
private:
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTrackElement.h ('k') | third_party/WebKit/Source/core/html/HTMLVideoElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698