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

Unified Diff: third_party/WebKit/Source/core/fetch/RawResource.cpp

Issue 1738553002: [ABANDONED] Move multipart/x-mixed-replace related code to ImageResource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup-2
Patch Set: Created 4 years, 10 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/core/fetch/RawResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/RawResource.cpp b/third_party/WebKit/Source/core/fetch/RawResource.cpp
index 5c009ee1f722b2d7b86cb8bb4559cc93d11dec32..30a96b023081af94cc44414a6607ca8dfed7d31d 100644
--- a/third_party/WebKit/Source/core/fetch/RawResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/RawResource.cpp
@@ -90,9 +90,9 @@ RawResource::RawResource(const ResourceRequest& resourceRequest, Type type)
{
}
-void RawResource::appendDataInternal(const char* data, size_t length)
+void RawResource::appendData(const char* data, size_t length)
{
- Resource::appendDataInternal(data, length);
+ Resource::appendData(data, length);
RefPtrWillBeRawPtr<RawResource> protect(this);
ResourceClientWalker<RawResourceClient> w(m_clients);

Powered by Google App Engine
This is Rietveld 408576698