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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 27 matching lines...) Expand all Loading... |
38 #include "modules/mediasource/SourceBuffer.h" | 38 #include "modules/mediasource/SourceBuffer.h" |
39 #include "modules/mediasource/SourceBufferList.h" | 39 #include "modules/mediasource/SourceBufferList.h" |
40 #include "public/platform/WebMediaSource.h" | 40 #include "public/platform/WebMediaSource.h" |
41 #include "wtf/PassOwnPtr.h" | 41 #include "wtf/PassOwnPtr.h" |
42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
43 | 43 |
44 namespace blink { | 44 namespace blink { |
45 class WebSourceBuffer; | 45 class WebSourceBuffer; |
46 } | 46 } |
47 | 47 |
48 namespace WebCore { | 48 namespace blink { |
49 | 49 |
50 class ExceptionState; | 50 class ExceptionState; |
51 class GenericEventQueue; | 51 class GenericEventQueue; |
52 | 52 |
53 class MediaSource FINAL | 53 class MediaSource FINAL |
54 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<MediaSour
ce> | 54 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<MediaSour
ce> |
55 , public HTMLMediaSource | 55 , public HTMLMediaSource |
56 , public ActiveDOMObject | 56 , public ActiveDOMObject |
57 , public EventTargetWithInlineData { | 57 , public EventTargetWithInlineData { |
58 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<M
ediaSource>); | 58 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<M
ediaSource>); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 AtomicString m_readyState; | 130 AtomicString m_readyState; |
131 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; | 131 OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; |
132 RawPtrWillBeWeakMember<HTMLMediaElement> m_attachedElement; | 132 RawPtrWillBeWeakMember<HTMLMediaElement> m_attachedElement; |
133 | 133 |
134 Member<SourceBufferList> m_sourceBuffers; | 134 Member<SourceBufferList> m_sourceBuffers; |
135 Member<SourceBufferList> m_activeSourceBuffers; | 135 Member<SourceBufferList> m_activeSourceBuffers; |
136 | 136 |
137 bool m_isAddedToRegistry; | 137 bool m_isAddedToRegistry; |
138 }; | 138 }; |
139 | 139 |
140 } // namespace WebCore | 140 } // namespace blink |
141 | 141 |
142 #endif | 142 #endif |
OLD | NEW |