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

Unified Diff: public/web/WebSourceBuffer.h

Issue 14876007: Add Blink side support for SourceBuffer.appendWindowStart & SourceBuffer.appendWindowEnd. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: throw DOMException for set appendwindow error Created 7 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 side-by-side diff with in-line comments
Download patch
Index: public/web/WebSourceBuffer.h
diff --git a/public/web/WebSourceBuffer.h b/public/web/WebSourceBuffer.h
index 064626cda9b94ff4f61c35b10b2bb8d73f8af9d9..6dd88917bf383f69204de7d9b8f16d756e59c540 100644
--- a/public/web/WebSourceBuffer.h
+++ b/public/web/WebSourceBuffer.h
@@ -43,6 +43,8 @@ public:
virtual void append(const unsigned char* data, unsigned length) = 0;
virtual void abort() = 0;
virtual bool setTimestampOffset(double) = 0;
+ virtual void setAppendWindowStart(double) = 0;
+ virtual void setAppendWindowEnd(double) = 0;
virtual void removedFromMediaSource() = 0;
};
« Source/modules/mediasource/SourceBuffer.cpp ('K') | « Source/web/SourceBufferPrivateImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698