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

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

Issue 2366253002: Remove ActiveDOMObject::stop() (Closed)
Patch Set: temp Created 4 years, 2 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
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 void onTrackChanged(TrackBase*) override; 101 void onTrackChanged(TrackBase*) override;
102 102
103 // EventTarget interface 103 // EventTarget interface
104 const AtomicString& interfaceName() const override; 104 const AtomicString& interfaceName() const override;
105 ExecutionContext* getExecutionContext() const override; 105 ExecutionContext* getExecutionContext() const override;
106 106
107 // ScriptWrappable 107 // ScriptWrappable
108 bool hasPendingActivity() const final; 108 bool hasPendingActivity() const final;
109 109
110 // ActiveDOMObject interface 110 // ActiveDOMObject interface
111 void stop() override; 111 void contextDestroyed() override;
112 112
113 // URLRegistrable interface 113 // URLRegistrable interface
114 URLRegistry& registry() const override; 114 URLRegistry& registry() const override;
115 115
116 // Used by SourceBuffer. 116 // Used by SourceBuffer.
117 void openIfInEndedState(); 117 void openIfInEndedState();
118 bool isOpen() const; 118 bool isOpen() const;
119 void setSourceBufferActive(SourceBuffer*, bool); 119 void setSourceBufferActive(SourceBuffer*, bool);
120 HTMLMediaElement* mediaElement() const; 120 HTMLMediaElement* mediaElement() const;
121 121
(...skipping 31 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