| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index 24e42fdce41d0302325376dd7ddbd405a00aed00..ab31fe7a32091683a9298c9a9df41e4c22e1018b 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));
|
|
|