Index: content/child/blink_platform_impl.cc |
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc |
index 6474a7f8741570ee5ae6e789be4967cf5af72759..fdef01be48c9f90b590c38f1e231fd11dc388b51 100644 |
--- a/content/child/blink_platform_impl.cc |
+++ b/content/child/blink_platform_impl.cc |
@@ -467,6 +467,15 @@ bool BlinkPlatformImpl::portAllowed(const blink::WebURL& url) const { |
return net::IsPortAllowedForScheme(gurl.EffectiveIntPort(), gurl.scheme()); |
} |
+bool BlinkPlatformImpl::parseMultipartHeadersFromBody( |
+ const char* bytes, |
+ size_t size, |
+ blink::WebURLResponse* response, |
+ size_t* end) const { |
+ return WebURLLoaderImpl::ParseMultipartHeadersFromBody( |
+ bytes, size, response, end); |
+} |
+ |
blink::WebThread* BlinkPlatformImpl::createThread(const char* name) { |
scoped_ptr<WebThreadImplForWorkerScheduler> thread( |
new WebThreadImplForWorkerScheduler(name)); |