| Index: content/browser/loader/resource_dispatcher_host_impl.cc
|
| diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| index c5e067d8cd77d2a30bf0a0d702cef1bd32cb1514..3ebcda9455e9afada10691e22f9acc8cc132dc03 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.cc
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| @@ -539,7 +539,7 @@ DownloadInterruptReason ResourceDispatcherHostImpl::BeginDownload(
|
| CreateRequestInfo(child_id, route_id, true, context);
|
| extra_info->AssociateWithRequest(request.get()); // Request takes ownership.
|
|
|
| - if (request->url().SchemeIs(kBlobScheme)) {
|
| + if (request->url().SchemeIs(url::kBlobScheme)) {
|
| ChromeBlobStorageContext* blob_context =
|
| GetChromeBlobStorageContextForResourceContext(context);
|
| webkit_blob::BlobProtocolHandler::SetRequestedBlobDataHandle(
|
| @@ -1126,7 +1126,7 @@ void ResourceDispatcherHostImpl::BeginRequest(
|
| // Request takes ownership.
|
| extra_info->AssociateWithRequest(new_request.get());
|
|
|
| - if (new_request->url().SchemeIs(kBlobScheme)) {
|
| + if (new_request->url().SchemeIs(url::kBlobScheme)) {
|
| // Hang on to a reference to ensure the blob is not released prior
|
| // to the job being started.
|
| webkit_blob::BlobProtocolHandler::SetRequestedBlobDataHandle(
|
|
|