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

Unified Diff: third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp

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/ArchiveResource.cpp
diff --git a/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp b/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
index b8d521b34ee57bd0a12a4e36920857aa2c86a92b..367e95cdeae4c0296c3ab68d48826b8bf44bdcc1 100644
--- a/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
+++ b/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
@@ -49,15 +49,15 @@ 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(
- data, url, contentID, mimeType, textEncoding));
+ return new ArchiveResource(
+ data, url, contentID, mimeType, textEncoding);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/mhtml/ArchiveResource.h ('k') | third_party/WebKit/Source/platform/mhtml/MHTMLArchive.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698