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) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 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 MediaStreamCenter_h | 32 #ifndef MediaStreamCenter_h |
33 #define MediaStreamCenter_h | 33 #define MediaStreamCenter_h |
34 | 34 |
35 #include "modules/mediastream/SourceInfo.h" | |
36 #include "public/platform/WebMediaStreamCenterClient.h" | 35 #include "public/platform/WebMediaStreamCenterClient.h" |
37 #include "public/platform/WebVector.h" | 36 #include "public/platform/WebVector.h" |
38 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
39 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
40 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
41 | 40 |
42 namespace blink { | 41 namespace blink { |
43 class WebMediaStream; | 42 class WebMediaStream; |
44 class WebMediaStreamCenter; | 43 class WebMediaStreamCenter; |
45 class WebMediaStreamTrack; | 44 class WebMediaStreamTrack; |
(...skipping 27 matching lines...) Expand all Loading... |
73 | 72 |
74 private: | 73 private: |
75 MediaStreamCenter(); | 74 MediaStreamCenter(); |
76 | 75 |
77 OwnPtr<blink::WebMediaStreamCenter> m_private; | 76 OwnPtr<blink::WebMediaStreamCenter> m_private; |
78 }; | 77 }; |
79 | 78 |
80 } // namespace WebCore | 79 } // namespace WebCore |
81 | 80 |
82 #endif // MediaStreamCenter_h | 81 #endif // MediaStreamCenter_h |
OLD | NEW |