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

Unified Diff: third_party/WebKit/Source/platform/mhtml/MHTMLParser.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/platform/mhtml/MHTMLParser.h
diff --git a/third_party/WebKit/Source/platform/mhtml/MHTMLParser.h b/third_party/WebKit/Source/platform/mhtml/MHTMLParser.h
index 4e7fdb6a703d824e0161c707d1e99561f8059d93..9134e9e68d5a05359e02edf1d21b0ebfb1e32398 100644
--- a/third_party/WebKit/Source/platform/mhtml/MHTMLParser.h
+++ b/third_party/WebKit/Source/platform/mhtml/MHTMLParser.h
@@ -52,7 +52,7 @@ class PLATFORM_EXPORT MHTMLParser final {
public:
explicit MHTMLParser(SharedBuffer*);
- WillBeHeapVector<RefPtrWillBeMember<ArchiveResource>> parseArchive();
+ HeapVector<Member<ArchiveResource>> parseArchive();
// Translates |contentIDFromMimeHeader| (of the form "<foo@bar.com>")
// into a cid-scheme URI (of the form "cid:foo@bar.com").
@@ -63,8 +63,8 @@ public:
static KURL convertContentIDToURI(const String& contentID);
private:
- bool parseArchiveWithHeader(MIMEHeader*, WillBeHeapVector<RefPtrWillBeMember<ArchiveResource>>&);
- PassRefPtrWillBeRawPtr<ArchiveResource> parseNextPart(const MIMEHeader&, const String& endOfPartBoundary, const String& endOfDocumentBoundary, bool& endOfArchiveReached);
+ bool parseArchiveWithHeader(MIMEHeader*, HeapVector<Member<ArchiveResource>>&);
+ RawPtr<ArchiveResource> parseNextPart(const MIMEHeader&, const String& endOfPartBoundary, const String& endOfDocumentBoundary, bool& endOfArchiveReached);
SharedBufferChunkReader m_lineReader;
};
« no previous file with comments | « third_party/WebKit/Source/platform/mhtml/MHTMLArchive.cpp ('k') | third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698