Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_ | |
| 6 #define CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_ | |
| 7 | |
| 8 #include "base/memory/weak_ptr.h" | |
| 9 #include "base/message_loop_proxy.h" | |
| 10 #include "base/synchronization/lock.h" | |
| 11 #include "content/public/browser/stream_handle.h" | |
| 12 | |
| 13 namespace content { | |
| 14 | |
| 15 class Stream; | |
| 16 | |
| 17 class StreamHandleImpl : public StreamHandle { | |
| 18 public: | |
| 19 StreamHandleImpl(base::WeakPtr<Stream> stream); | |
| 20 virtual ~StreamHandleImpl(); | |
| 21 | |
| 22 void SendCloseEvent(); | |
| 23 | |
| 24 private: | |
| 25 // StreamHandle overrides | |
| 26 virtual const GURL& GetUrl() OVERRIDE; | |
| 27 virtual void RegisterCloseCallback(const base::Closure& callback) OVERRIDE; | |
| 28 | |
| 29 base::WeakPtr<Stream> stream_; | |
| 30 base::Closure callback_; | |
| 31 GURL url_; | |
| 32 base::MessageLoopProxy* stream_message_loop_; | |
| 33 base::MessageLoopProxy* callback_message_loop_; | |
| 34 base::Lock callback_lock_; | |
|
darin (slow to review)
2013/03/19 06:12:51
consider documenting what variables must be access
Zachary Kuznia
2013/03/19 06:59:35
Done.
| |
| 35 }; | |
| 36 | |
| 37 } // namespace content | |
| 38 | |
| 39 #endif // CONTENT_BROWSER_STREAMS_STREAM_HANDLE_IMPL_H_ | |
| 40 | |
| OLD | NEW |