| Index: third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h
|
| diff --git a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h
|
| index d0bca90f6206792b44a8b26b8f788323f3e6511c..3b8df320498f4534b521eb0bd44102260c0084bf 100644
|
| --- a/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h
|
| +++ b/third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h
|
| @@ -49,7 +49,7 @@ struct SerializedResource;
|
|
|
| class PLATFORM_EXPORT MHTMLArchive final : public GarbageCollectedFinalized<MHTMLArchive> {
|
| public:
|
| - static RawPtr<MHTMLArchive> create(const KURL&, SharedBuffer*);
|
| + static MHTMLArchive* create(const KURL&, SharedBuffer*);
|
| ~MHTMLArchive();
|
|
|
| // Binary encoding results in smaller MHTML files but they might not work in other browsers.
|
| @@ -100,7 +100,7 @@ public:
|
| private:
|
| MHTMLArchive();
|
|
|
| - void setMainResource(RawPtr<ArchiveResource>);
|
| + void setMainResource(ArchiveResource*);
|
| void addSubresource(ArchiveResource*);
|
|
|
| Member<ArchiveResource> m_mainResource;
|
|
|