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

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: add comment code Created 7 years, 4 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
« no previous file with comments | « Source/web/SourceBufferPrivateImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebSourceBuffer.h
diff --git a/public/web/WebSourceBuffer.h b/public/web/WebSourceBuffer.h
index 07c433a27893300918faa13927bce6807fa20227..f2cd1954bf9f352080b88fcda59e8d35474915c1 100644
--- a/public/web/WebSourceBuffer.h
+++ b/public/web/WebSourceBuffer.h
@@ -44,6 +44,13 @@ public:
virtual void abort() = 0;
virtual void remove(double start, double end) = 0;
virtual bool setTimestampOffset(double) = 0;
+
+ // Set presentation timestamp for the start of append window.
+ virtual void setAppendWindowStart(double) = 0;
+
+ // Set presentation timestamp for the end of append window.
+ virtual void setAppendWindowEnd(double) = 0;
+
virtual void removedFromMediaSource() = 0;
};
« no previous file with comments | « Source/web/SourceBufferPrivateImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698