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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 34733007: Add back unseparated out version of method overloads in dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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:
Download patch
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index d0df6ece551406e1fe6b1195dec41bb987bf5735..a13b5a76e09635224b9b057ef9af4b679372e5ad 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -23000,11 +23000,6 @@ class SourceBuffer extends EventTarget {
@Experimental() // untriaged
void appendBuffer(ByteBuffer data) native "SourceBuffer_appendBuffer_Callback";
- @DomName('SourceBuffer.appendBufferView')
- @DocsEditable()
- @Experimental() // untriaged
- void appendBufferView(TypedData data) native "SourceBuffer_appendBufferView_Callback";
-
void appendStream(FileStream stream, [int maxSize]) {
if (maxSize != null) {
_appendStream_1(stream, maxSize);
@@ -23018,6 +23013,11 @@ class SourceBuffer extends EventTarget {
void _appendStream_2(stream) native "SourceBuffer__appendStream_2_Callback";
+ @DomName('SourceBuffer.appendTypedData')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void appendTypedData(TypedData data) native "SourceBuffer_appendTypedData_Callback";
+
@DomName('SourceBuffer.remove')
@DocsEditable()
@Experimental() // untriaged

Powered by Google App Engine
This is Rietveld 408576698