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

Unified Diff: third_party/WebKit/Source/core/loader/SinkDocument.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/loader/SinkDocument.h
diff --git a/third_party/WebKit/Source/core/loader/SinkDocument.h b/third_party/WebKit/Source/core/loader/SinkDocument.h
index 8a2ceb4b4e8e0e4625ad0b1445e5370c595e32a3..517d137c33d3b3141e0690b9017f1e68a4502008 100644
--- a/third_party/WebKit/Source/core/loader/SinkDocument.h
+++ b/third_party/WebKit/Source/core/loader/SinkDocument.h
@@ -32,15 +32,15 @@ namespace blink {
class SinkDocument final : public HTMLDocument {
public:
- static PassRefPtrWillBeRawPtr<SinkDocument> create(const DocumentInit& initializer = DocumentInit())
+ static RawPtr<SinkDocument> create(const DocumentInit& initializer = DocumentInit())
{
- return adoptRefWillBeNoop(new SinkDocument(initializer));
+ return new SinkDocument(initializer);
}
private:
SinkDocument(const DocumentInit&);
- PassRefPtrWillBeRawPtr<DocumentParser> createParser() override;
+ RawPtr<DocumentParser> createParser() override;
};

Powered by Google App Engine
This is Rietveld 408576698