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

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

Issue 2629593004: Disambiguate LifecycleObserver::contextDestroyed (Closed)
Patch Set: temp Created 3 years, 11 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 void removedFromMediaSource(); 99 void removedFromMediaSource();
100 double highestPresentationTimestamp(); 100 double highestPresentationTimestamp();
101 101
102 // ScriptWrappable 102 // ScriptWrappable
103 bool hasPendingActivity() const final; 103 bool hasPendingActivity() const final;
104 104
105 // SuspendableObject 105 // SuspendableObject
106 void suspend() override; 106 void suspend() override;
107 void resume() override; 107 void resume() override;
108 void contextDestroyed() override; 108 void contextDestroyed(ExecutionContext*) override;
109 109
110 // EventTarget interface 110 // EventTarget interface
111 ExecutionContext* getExecutionContext() const override; 111 ExecutionContext* getExecutionContext() const override;
112 const AtomicString& interfaceName() const override; 112 const AtomicString& interfaceName() const override;
113 113
114 // WebSourceBufferClient interface 114 // WebSourceBufferClient interface
115 bool initializationSegmentReceived(const WebVector<MediaTrackInfo>&) override; 115 bool initializationSegmentReceived(const WebVector<MediaTrackInfo>&) override;
116 116
117 DECLARE_VIRTUAL_TRACE(); 117 DECLARE_VIRTUAL_TRACE();
118 118
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 Member<AsyncMethodRunner<SourceBuffer>> m_appendBufferAsyncPartRunner; 166 Member<AsyncMethodRunner<SourceBuffer>> m_appendBufferAsyncPartRunner;
167 167
168 double m_pendingRemoveStart; 168 double m_pendingRemoveStart;
169 double m_pendingRemoveEnd; 169 double m_pendingRemoveEnd;
170 Member<AsyncMethodRunner<SourceBuffer>> m_removeAsyncPartRunner; 170 Member<AsyncMethodRunner<SourceBuffer>> m_removeAsyncPartRunner;
171 }; 171 };
172 172
173 } // namespace blink 173 } // namespace blink
174 174
175 #endif // SourceBuffer_h 175 #endif // SourceBuffer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698