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 fbbcb7da73938b116ebd467bb056423525c69480..af353d5ee4837bbec30fcffebcfd670fc92c7ec6 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); |