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

Unified Diff: third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp

Issue 2949103006: Removed RefPtr::Release. (Closed)
Patch Set: Removed Release from mac specific code Created 3 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/fetch/BlobBytesConsumer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp
diff --git a/third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp b/third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp
index 8bcba88de5a9ec19ff57336c14e76fefb7b2a93c..efe480cbc8d6f765b325698f32c71e9488e52335 100644
--- a/third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp
+++ b/third_party/WebKit/Source/core/exported/WebFrameSerializer.cpp
@@ -453,7 +453,7 @@ WebThreadSafeData WebFrameSerializer::GenerateMHTMLHeader(
MHTMLArchive::GenerateMHTMLHeader(boundary, document->title(),
document->SuggestedMIMEType(),
*buffer->MutableData());
- return buffer.Release();
+ return buffer;
}
WebThreadSafeData WebFrameSerializer::GenerateMHTMLParts(
@@ -516,7 +516,7 @@ WebThreadSafeData WebFrameSerializer::GenerateMHTMLParts(
*output->MutableData());
}
}
- return output.Release();
+ return output;
}
bool WebFrameSerializer::Serialize(
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/fetch/BlobBytesConsumer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698