| 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 WebMediaStream_h | 26 #define WebMediaStream_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 #include "WebVector.h" | 31 #include "WebVector.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class MediaStreamDescriptor; | 35 class MediaStreamDescriptor; |
| 36 class WebMediaStreamSource; | |
| 37 class WebMediaStreamTrack; | 36 class WebMediaStreamTrack; |
| 38 class WebString; | 37 class WebString; |
| 39 | 38 |
| 40 class WebMediaStream { | 39 class WebMediaStream { |
| 41 public: | 40 public: |
| 42 class ExtraData { | 41 class ExtraData { |
| 43 public: | 42 public: |
| 44 virtual ~ExtraData() { } | 43 virtual ~ExtraData() { } |
| 45 }; | 44 }; |
| 46 | 45 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 BLINK_PLATFORM_EXPORT WebMediaStream& operator=(const WTF::PassRefPtr<MediaS
treamDescriptor>&); | 84 BLINK_PLATFORM_EXPORT WebMediaStream& operator=(const WTF::PassRefPtr<MediaS
treamDescriptor>&); |
| 86 #endif | 85 #endif |
| 87 | 86 |
| 88 private: | 87 private: |
| 89 WebPrivatePtr<MediaStreamDescriptor> m_private; | 88 WebPrivatePtr<MediaStreamDescriptor> m_private; |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 } // namespace blink | 91 } // namespace blink |
| 93 | 92 |
| 94 #endif // WebMediaStream_h | 93 #endif // WebMediaStream_h |
| OLD | NEW |