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

Unified Diff: third_party/WebKit/Source/modules/mediasource/MediaSource.h

Issue 2102323002: MSE: Experimental support for new abort and duration behavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Basic structure. Needs lots of test fixing and some new tests. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/mediasource/MediaSource.h
diff --git a/third_party/WebKit/Source/modules/mediasource/MediaSource.h b/third_party/WebKit/Source/modules/mediasource/MediaSource.h
index d022f7dfe033c1a237da9af9165ce7be6c03814e..bdff4a071c1f5e7d476955db68df77b19b3e86fe 100644
--- a/third_party/WebKit/Source/modules/mediasource/MediaSource.h
+++ b/third_party/WebKit/Source/modules/mediasource/MediaSource.h
@@ -123,8 +123,8 @@ private:
void endOfStreamInternal(const WebMediaSource::EndOfStreamStatus, ExceptionState&);
// Implements the duration change algorithm.
- // https://dvcs.w3.org/hg/html-media/raw-file/default/media-source/media-source.html#duration-change-algorithm
- void durationChangeAlgorithm(double newDuration);
+ // http://w3c.github.io/media-source/#duration-change-algorithm
+ void durationChangeAlgorithm(double newDuration, ExceptionState&);
std::unique_ptr<WebMediaSource> m_webMediaSource;
AtomicString m_readyState;

Powered by Google App Engine
This is Rietveld 408576698