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

Unified Diff: remoting/webapp/js_proto/dom_proto.js

Issue 329663002: Fix MediaSource renderer to limit memory consumption. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « remoting/webapp/client_plugin.js ('k') | remoting/webapp/media_source_renderer.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/js_proto/dom_proto.js
diff --git a/remoting/webapp/js_proto/dom_proto.js b/remoting/webapp/js_proto/dom_proto.js
index 1e392cb5593d29e43c0c6cc19c554f004b668841..1877b505b69ddb495c4515fe31a31bc63883a788 100644
--- a/remoting/webapp/js_proto/dom_proto.js
+++ b/remoting/webapp/js_proto/dom_proto.js
@@ -151,12 +151,21 @@ var SourceBuffer = function() {}
/** @type {boolean} */
SourceBuffer.prototype.updating;
+/** @type {TimeRanges} */
+SourceBuffer.prototype.buffered;
+
/**
* @param {ArrayBuffer} buffer
*/
SourceBuffer.prototype.appendBuffer = function(buffer) {}
/**
+ * @param {number} start
+ * @param {number} end
+ */
+SourceBuffer.prototype.remove = function(start, end) {}
+
+/**
* @constructor
* @extends {EventTargetStub}
*/
« no previous file with comments | « remoting/webapp/client_plugin.js ('k') | remoting/webapp/media_source_renderer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698