| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. | 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #ifndef MediaStreamComponent_h | 32 #ifndef MediaStreamComponent_h |
| 33 #define MediaStreamComponent_h | 33 #define MediaStreamComponent_h |
| 34 | 34 |
| 35 #include <wtf/PassRefPtr.h> | 35 #include "wtf/PassRefPtr.h" |
| 36 #include <wtf/RefCounted.h> | 36 #include "wtf/RefCounted.h" |
| 37 #include <wtf/text/WTFString.h> | 37 #include "wtf/text/WTFString.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class MediaStreamDescriptor; | 41 class MediaStreamDescriptor; |
| 42 class MediaStreamSource; | 42 class MediaStreamSource; |
| 43 | 43 |
| 44 class MediaStreamComponent : public RefCounted<MediaStreamComponent> { | 44 class MediaStreamComponent : public RefCounted<MediaStreamComponent> { |
| 45 public: | 45 public: |
| 46 static PassRefPtr<MediaStreamComponent> create(PassRefPtr<MediaStreamSource>
); | 46 static PassRefPtr<MediaStreamComponent> create(PassRefPtr<MediaStreamSource>
); |
| 47 static PassRefPtr<MediaStreamComponent> create(const String& id, PassRefPtr<
MediaStreamSource>); | 47 static PassRefPtr<MediaStreamComponent> create(const String& id, PassRefPtr<
MediaStreamSource>); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 63 RefPtr<MediaStreamSource> m_source; | 63 RefPtr<MediaStreamSource> m_source; |
| 64 String m_id; | 64 String m_id; |
| 65 bool m_enabled; | 65 bool m_enabled; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 typedef Vector<RefPtr<MediaStreamComponent> > MediaStreamComponentVector; | 68 typedef Vector<RefPtr<MediaStreamComponent> > MediaStreamComponentVector; |
| 69 | 69 |
| 70 } // namespace WebCore | 70 } // namespace WebCore |
| 71 | 71 |
| 72 #endif // MediaStreamComponent_h | 72 #endif // MediaStreamComponent_h |
| OLD | NEW |