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 15 matching lines...) Expand all Loading... |
26 #define WebMediaStreamTrack_h | 26 #define WebMediaStreamTrack_h |
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 | 31 |
32 namespace WebCore { | 32 namespace WebCore { |
33 class MediaStreamComponent; | 33 class MediaStreamComponent; |
34 } | 34 } |
35 | 35 |
36 namespace WebKit { | 36 namespace blink { |
37 class WebAudioSourceProvider; | 37 class WebAudioSourceProvider; |
38 class WebMediaStream; | 38 class WebMediaStream; |
39 class WebMediaStreamSource; | 39 class WebMediaStreamSource; |
40 class WebString; | 40 class WebString; |
41 | 41 |
42 class WebMediaStreamTrack { | 42 class WebMediaStreamTrack { |
43 public: | 43 public: |
44 class ExtraData { | 44 class ExtraData { |
45 public: | 45 public: |
46 virtual ~ExtraData() { } | 46 virtual ~ExtraData() { } |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 WebMediaStreamTrack(WebCore::MediaStreamComponent*); | 86 WebMediaStreamTrack(WebCore::MediaStreamComponent*); |
87 WebMediaStreamTrack& operator=(WebCore::MediaStreamComponent*); | 87 WebMediaStreamTrack& operator=(WebCore::MediaStreamComponent*); |
88 operator WTF::PassRefPtr<WebCore::MediaStreamComponent>() const; | 88 operator WTF::PassRefPtr<WebCore::MediaStreamComponent>() const; |
89 operator WebCore::MediaStreamComponent*() const; | 89 operator WebCore::MediaStreamComponent*() const; |
90 #endif | 90 #endif |
91 | 91 |
92 private: | 92 private: |
93 WebPrivatePtr<WebCore::MediaStreamComponent> m_private; | 93 WebPrivatePtr<WebCore::MediaStreamComponent> m_private; |
94 }; | 94 }; |
95 | 95 |
96 } // namespace WebKit | 96 } // namespace blink |
97 | 97 |
98 #endif // WebMediaStreamTrack_h | 98 #endif // WebMediaStreamTrack_h |
OLD | NEW |