| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index 8f9c7b16a81400c76363223efbc721d4b3ea0099..91ebbae1ce0c2ad105c87a95da815e67b908aacb 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -468,6 +468,14 @@ bool BlinkPlatformImpl::portAllowed(const blink::WebURL& url) const {
|
| return net::IsPortAllowedForScheme(gurl.EffectiveIntPort(), gurl.scheme());
|
| }
|
|
|
| +bool BlinkPlatformImpl::parseAdditionalHeaders(const char* bytes,
|
| + size_t size,
|
| + blink::WebURLResponse* response,
|
| + size_t* end) const {
|
| + return WebURLLoaderImpl::ParseAdditionalHeaders(
|
| + bytes, size, response, end);
|
| +}
|
| +
|
| blink::WebThread* BlinkPlatformImpl::createThread(const char* name) {
|
| scoped_ptr<WebThreadImplForWorkerScheduler> thread(
|
| new WebThreadImplForWorkerScheduler(name));
|
|
|