OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #include "WebCommon.h" | 28 #include "WebCommon.h" |
29 #include "WebNonCopyable.h" | 29 #include "WebNonCopyable.h" |
30 #include "WebPrivatePtr.h" | 30 #include "WebPrivatePtr.h" |
31 #include "WebVector.h" | 31 #include "WebVector.h" |
32 | 32 |
33 namespace WebCore { | 33 namespace WebCore { |
34 class MediaStreamDescriptor; | 34 class MediaStreamDescriptor; |
35 } | 35 } |
36 | 36 |
37 namespace WebKit { | 37 namespace blink { |
38 | 38 |
39 class WebMediaStreamSource; | 39 class WebMediaStreamSource; |
40 class WebMediaStreamTrack; | 40 class WebMediaStreamTrack; |
41 class WebString; | 41 class WebString; |
42 | 42 |
43 class WebMediaStream { | 43 class WebMediaStream { |
44 public: | 44 public: |
45 class ExtraData { | 45 class ExtraData { |
46 public: | 46 public: |
47 virtual ~ExtraData() { } | 47 virtual ~ExtraData() { } |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 WebMediaStream(const WTF::PassRefPtr<WebCore::MediaStreamDescriptor>&); | 85 WebMediaStream(const WTF::PassRefPtr<WebCore::MediaStreamDescriptor>&); |
86 operator WTF::PassRefPtr<WebCore::MediaStreamDescriptor>() const; | 86 operator WTF::PassRefPtr<WebCore::MediaStreamDescriptor>() const; |
87 operator WebCore::MediaStreamDescriptor*() const; | 87 operator WebCore::MediaStreamDescriptor*() const; |
88 WebMediaStream& operator=(const WTF::PassRefPtr<WebCore::MediaStreamDescript
or>&); | 88 WebMediaStream& operator=(const WTF::PassRefPtr<WebCore::MediaStreamDescript
or>&); |
89 #endif | 89 #endif |
90 | 90 |
91 private: | 91 private: |
92 WebPrivatePtr<WebCore::MediaStreamDescriptor> m_private; | 92 WebPrivatePtr<WebCore::MediaStreamDescriptor> m_private; |
93 }; | 93 }; |
94 | 94 |
95 } // namespace WebKit | 95 } // namespace blink |
96 | 96 |
97 #endif // WebMediaStream_h | 97 #endif // WebMediaStream_h |
OLD | NEW |