Revert 268405 "Make sure that ScratchBuffer::Allocate() always r..."
[chromium-blink-merge.git] / content / browser / streams / stream_handle_impl.h
blobfc8f5355a34175bbd744fc03bd7e684c92b56578
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"
12 namespace base {
13 class MessageLoopProxy;
16 namespace content {
18 class Stream;
20 class StreamHandleImpl : public StreamHandle {
21 public:
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();
28 private:
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_;
36 GURL url_;
37 GURL original_url_;
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_