| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/streams/stream_handle_impl.h" | 5 #include "content/browser/streams/stream_handle_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
| 10 #include "content/browser/streams/stream.h" | 10 #include "content/browser/streams/stream.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 StreamHandleImpl::StreamHandleImpl( | 24 StreamHandleImpl::StreamHandleImpl( |
| 25 const base::WeakPtr<Stream>& stream, | 25 const base::WeakPtr<Stream>& stream, |
| 26 const GURL& original_url, | 26 const GURL& original_url, |
| 27 const std::string& mime_type, | 27 const std::string& mime_type, |
| 28 scoped_refptr<net::HttpResponseHeaders> response_headers) | 28 scoped_refptr<net::HttpResponseHeaders> response_headers) |
| 29 : stream_(stream), | 29 : stream_(stream), |
| 30 url_(stream->url()), | 30 url_(stream->url()), |
| 31 original_url_(original_url), | 31 original_url_(original_url), |
| 32 mime_type_(mime_type), | 32 mime_type_(mime_type), |
| 33 response_headers_(response_headers), | 33 // Make a copy of the response headers so it is safe to pass this across |
| 34 // threads. |
| 35 response_headers_( |
| 36 new net::HttpResponseHeaders(response_headers->raw_headers())), |
| 34 stream_message_loop_(base::MessageLoopProxy::current().get()) {} | 37 stream_message_loop_(base::MessageLoopProxy::current().get()) {} |
| 35 | 38 |
| 36 StreamHandleImpl::~StreamHandleImpl() { | 39 StreamHandleImpl::~StreamHandleImpl() { |
| 37 stream_message_loop_->PostTaskAndReply(FROM_HERE, | 40 stream_message_loop_->PostTaskAndReply(FROM_HERE, |
| 38 base::Bind(&Stream::CloseHandle, stream_), | 41 base::Bind(&Stream::CloseHandle, stream_), |
| 39 base::Bind(&RunCloseListeners, close_listeners_)); | 42 base::Bind(&RunCloseListeners, close_listeners_)); |
| 40 } | 43 } |
| 41 | 44 |
| 42 const GURL& StreamHandleImpl::GetURL() { | 45 const GURL& StreamHandleImpl::GetURL() { |
| 43 return url_; | 46 return url_; |
| 44 } | 47 } |
| 45 | 48 |
| 46 const GURL& StreamHandleImpl::GetOriginalURL() { | 49 const GURL& StreamHandleImpl::GetOriginalURL() { |
| 47 return original_url_; | 50 return original_url_; |
| 48 } | 51 } |
| 49 | 52 |
| 50 const std::string& StreamHandleImpl::GetMimeType() { | 53 const std::string& StreamHandleImpl::GetMimeType() { |
| 51 return mime_type_; | 54 return mime_type_; |
| 52 } | 55 } |
| 53 | 56 |
| 54 scoped_refptr<net::HttpResponseHeaders> StreamHandleImpl::GetResponseHeaders() { | 57 scoped_refptr<net::HttpResponseHeaders> StreamHandleImpl::GetResponseHeaders() { |
| 55 return response_headers_; | 58 return response_headers_; |
| 56 } | 59 } |
| 57 | 60 |
| 58 void StreamHandleImpl::AddCloseListener(const base::Closure& callback) { | 61 void StreamHandleImpl::AddCloseListener(const base::Closure& callback) { |
| 59 close_listeners_.push_back(callback); | 62 close_listeners_.push_back(callback); |
| 60 } | 63 } |
| 61 | 64 |
| 62 } // namespace content | 65 } // namespace content |
| OLD | NEW |