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

Unified Diff: public/platform/WebSourceBuffer.h

Issue 552943002: MSE: Start letting SourceBuffer begin to do initialization segment received algorithm (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to be part 1 of a 3-sided blink->chromium->blink set of changes Created 6 years, 3 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/platform/WebSourceBuffer.h
diff --git a/public/platform/WebSourceBuffer.h b/public/platform/WebSourceBuffer.h
index 1f34a0c52ab9696ab3baf3b5f732cda54e8c0139..516565637bbcf77ac4869e928b35b9184f43379c 100644
--- a/public/platform/WebSourceBuffer.h
+++ b/public/platform/WebSourceBuffer.h
@@ -35,6 +35,8 @@
namespace blink {
+class WebSourceBufferClient;
+
class WebSourceBuffer {
public:
enum AppendMode {
@@ -43,6 +45,12 @@ public:
};
virtual ~WebSourceBuffer() { }
+
+ virtual void setClient(WebSourceBufferClient*)
acolwell GONE FROM CHROMIUM 2014/09/10 17:16:27 nit: Add a comment indicating this will only be ca
wolenetz 2014/09/10 21:18:22 Done.
+ {
+ // FIXME: Remove default implementation once Chromium impl lands.
+ }
+
virtual bool setMode(AppendMode) = 0;
virtual WebTimeRanges buffered() = 0;

Powered by Google App Engine
This is Rietveld 408576698