diff options
Diffstat (limited to 'content/browser/webui/url_data_source_impl.cc')
-rw-r--r-- | content/browser/webui/url_data_source_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/webui/url_data_source_impl.cc b/content/browser/webui/url_data_source_impl.cc index d206207..2d89439 100644 --- a/content/browser/webui/url_data_source_impl.cc +++ b/content/browser/webui/url_data_source_impl.cc @@ -53,7 +53,7 @@ void URLDataSourceImpl::SendResponseOnIOThread( scoped_refptr<base::RefCountedMemory> bytes) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); if (backend_) - backend_->DataAvailable(request_id, bytes); + backend_->DataAvailable(request_id, bytes.get()); } } // namespace content |