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

Unified Diff: Source/web/SourceBufferPrivateImpl.cpp

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.h ('k') | public/web/WebSourceBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/SourceBufferPrivateImpl.cpp
diff --git a/Source/web/SourceBufferPrivateImpl.cpp b/Source/web/SourceBufferPrivateImpl.cpp
index c60611fde052955cc17c1e312d2c410df4e09b8a..a756a1ee1cc8f30dd2f790b4b00819de9e5b4cb8 100644
--- a/Source/web/SourceBufferPrivateImpl.cpp
+++ b/Source/web/SourceBufferPrivateImpl.cpp
@@ -70,6 +70,20 @@ bool SourceBufferPrivateImpl::setTimestampOffset(double offset)
return m_sourceBuffer->setTimestampOffset(offset);
}
+void SourceBufferPrivateImpl::setAppendWindowStart(double start)
+{
+ if (!m_sourceBuffer)
+ return;
+ m_sourceBuffer->setAppendWindowStart(start);
+}
+
+void SourceBufferPrivateImpl::setAppendWindowEnd(double end)
+{
+ if (!m_sourceBuffer)
+ return;
+ m_sourceBuffer->setAppendWindowEnd(end);
+}
+
void SourceBufferPrivateImpl::removedFromMediaSource()
{
m_sourceBuffer->removedFromMediaSource();
« no previous file with comments | « Source/web/SourceBufferPrivateImpl.h ('k') | public/web/WebSourceBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698