Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: Source/modules/mediasource/MediaSource.h

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/modules/mediasource/HTMLVideoElementMediaSource.cpp ('k') | Source/modules/mediasource/MediaSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698