| Index: third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
|
| diff --git a/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp b/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
|
| index 3c12174a7fd2e6312945a574154be69d97d2e5a2..d036f1280b5f169ab2fd05da6dcd15821863c142 100644
|
| --- a/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
|
| +++ b/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
|
| @@ -51,14 +51,14 @@ ArchiveResource::~ArchiveResource()
|
| {
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<ArchiveResource> ArchiveResource::create(
|
| +RawPtr<ArchiveResource> ArchiveResource::create(
|
| PassRefPtr<SharedBuffer> data,
|
| const KURL& url,
|
| const String& contentID,
|
| const AtomicString& mimeType,
|
| const AtomicString& textEncoding)
|
| {
|
| - return adoptRefWillBeNoop(new ArchiveResource(
|
| + return (new ArchiveResource(
|
| data, url, contentID, mimeType, textEncoding));
|
| }
|
|
|
|
|