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

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

Issue 1860903002: Update Source/platform/ to assume Oilpan only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: back out ScrollAnimatorMac() accidental change Created 4 years, 8 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 367e95cdeae4c0296c3ab68d48826b8bf44bdcc1..19c4dbeb47d3e65ca9943553cc91dfe5112ee752 100644
--- a/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
+++ b/third_party/WebKit/Source/platform/mhtml/ArchiveResource.cpp
@@ -30,7 +30,7 @@
namespace blink {
-inline ArchiveResource::ArchiveResource(
+ArchiveResource::ArchiveResource(
PassRefPtr<SharedBuffer> data,
const KURL& url,
const String& contentID,
@@ -49,15 +49,14 @@ ArchiveResource::~ArchiveResource()
{
}
-RawPtr<ArchiveResource> ArchiveResource::create(
+ArchiveResource* ArchiveResource::create(
PassRefPtr<SharedBuffer> data,
const KURL& url,
const String& contentID,
const AtomicString& mimeType,
const AtomicString& textEncoding)
{
- return 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