| 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;
|
| };
|
|
|
|
|
|
|