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

Unified Diff: lib/dom/dom.dart

Issue 10700046: Revert "Revert "Blob constructor"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index 6b7c9214cefb7cc3d2ed39e7834355840f4d107f..22fc847aecc59ed0546e692b9a27b0c63281d2ba 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -13,6 +13,13 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+class _BlobFactoryProvider {
+ factory Blob(List blobParts, [String type = null, String endings = null]) => _dummy();
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
class _DOMParserFactoryProvider {
factory DOMParser() => _dummy();
}
@@ -643,7 +650,9 @@ interface BiquadFilterNode extends AudioNode {
// WARNING: Do not edit - generated code.
-interface Blob {
+interface Blob default _BlobFactoryProvider {
+
+ Blob(List blobParts, [String type, String endings]);
final int size;
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698