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_
10 #include "base/memory/weak_ptr.h"
11 #include "content/public/browser/stream_handle.h"
14 class SingleThreadTaskRunner
;
21 class StreamHandleImpl
: public StreamHandle
{
23 StreamHandleImpl(const base::WeakPtr
<Stream
>& stream
);
24 ~StreamHandleImpl() override
;
27 // StreamHandle overrides
28 const GURL
& GetURL() override
;
29 void AddCloseListener(const base::Closure
& callback
) override
;
31 base::WeakPtr
<Stream
> stream_
;
33 base::SingleThreadTaskRunner
* stream_task_runner_
;
34 std::vector
<base::Closure
> close_listeners_
;
37 } // namespace content
39 #endif // CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_