| Index: content/browser/loader/stream_resource_handler.cc
|
| diff --git a/content/browser/loader/stream_resource_handler.cc b/content/browser/loader/stream_resource_handler.cc
|
| index c832afab18129f928485e5d16e58e33efec88083..1e2acc877f541e7c0b56828f266f7c9652cc0112 100644
|
| --- a/content/browser/loader/stream_resource_handler.cc
|
| +++ b/content/browser/loader/stream_resource_handler.cc
|
| @@ -18,13 +18,14 @@ namespace content {
|
| StreamResourceHandler::StreamResourceHandler(
|
| net::URLRequest* request,
|
| StreamRegistry* registry,
|
| - const GURL& security_origin)
|
| + const GURL& origin)
|
| : request_(request),
|
| read_buffer_(NULL) {
|
| - // TODO(zork): Find a way to share this with the blob URL creation in WebKit.
|
| + // TODO(tyoshino): Find a way to share this with the blob URL creation in
|
| + // WebKit.
|
| GURL url(std::string(chrome::kBlobScheme) + ":" +
|
| - security_origin.spec() + base::GenerateGUID());
|
| - stream_ = new Stream(registry, this, security_origin, url);
|
| + origin.spec() + base::GenerateGUID());
|
| + stream_ = new Stream(registry, this, url);
|
| }
|
|
|
| StreamResourceHandler::~StreamResourceHandler() {
|
| @@ -115,4 +116,3 @@ void StreamResourceHandler::OnClose(Stream* stream) {
|
| }
|
|
|
| } // namespace content
|
| -
|
|
|