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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_
6 #define CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_
8 #include "base/memory/weak_ptr.h"
9 #include "base/synchronization/lock.h"
10 #include "content/public/browser/stream_handle.h"
13 class MessageLoopProxy
;
20 class StreamHandleImpl
: public StreamHandle
{
22 StreamHandleImpl(const base::WeakPtr
<Stream
>& stream
,
23 const GURL
& original_url
,
24 const std::string
& mime_type
,
25 scoped_refptr
<net::HttpResponseHeaders
> response_headers
);
26 virtual ~StreamHandleImpl();
29 // StreamHandle overrides
30 virtual const GURL
& GetURL() OVERRIDE
;
31 virtual const GURL
& GetOriginalURL() OVERRIDE
;
32 virtual const std::string
& GetMimeType() OVERRIDE
;
33 virtual scoped_refptr
<net::HttpResponseHeaders
> GetResponseHeaders() OVERRIDE
;
35 base::WeakPtr
<Stream
> stream_
;
38 std::string mime_type_
;
39 scoped_refptr
<net::HttpResponseHeaders
> response_headers_
;
40 base::MessageLoopProxy
* stream_message_loop_
;
43 } // namespace content
45 #endif // CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_