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

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

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) Created 4 years 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include <memory> 44 #include <memory>
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class ExceptionState; 48 class ExceptionState;
49 class GenericEventQueue; 49 class GenericEventQueue;
50 class WebSourceBuffer; 50 class WebSourceBuffer;
51 51
52 class MediaSource final : public EventTargetWithInlineData, 52 class MediaSource final : public EventTargetWithInlineData,
53 public HTMLMediaSource, 53 public HTMLMediaSource,
54 public ActiveScriptWrappable, 54 public ActiveScriptWrappable<MediaSource>,
55 public SuspendableObject { 55 public SuspendableObject {
56 DEFINE_WRAPPERTYPEINFO(); 56 DEFINE_WRAPPERTYPEINFO();
57 USING_GARBAGE_COLLECTED_MIXIN(MediaSource); 57 USING_GARBAGE_COLLECTED_MIXIN(MediaSource);
58 58
59 public: 59 public:
60 static const AtomicString& openKeyword(); 60 static const AtomicString& openKeyword();
61 static const AtomicString& closedKeyword(); 61 static const AtomicString& closedKeyword();
62 static const AtomicString& endedKeyword(); 62 static const AtomicString& endedKeyword();
63 63
64 static MediaSource* create(ExecutionContext*); 64 static MediaSource* create(ExecutionContext*);
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 Member<SourceBufferList> m_activeSourceBuffers; 153 Member<SourceBufferList> m_activeSourceBuffers;
154 154
155 Member<TimeRanges> m_liveSeekableRange; 155 Member<TimeRanges> m_liveSeekableRange;
156 156
157 int m_addedToRegistryCounter; 157 int m_addedToRegistryCounter;
158 }; 158 };
159 159
160 } // namespace blink 160 } // namespace blink
161 161
162 #endif // MediaSource_h 162 #endif // MediaSource_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698