OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 class _DOMURLWrappingImplementation extends DOMWrapperBase implements DOMURL { | |
8 _DOMURLWrappingImplementation() : super() {} | |
9 | |
10 static create__DOMURLWrappingImplementation() native { | |
11 return new _DOMURLWrappingImplementation(); | |
12 } | |
13 | |
14 String createObjectURL(var blob_OR_stream) { | |
15 if (blob_OR_stream is MediaStream) { | |
16 return _createObjectURL(this, blob_OR_stream); | |
17 } else { | |
18 if (blob_OR_stream is Blob) { | |
19 return _createObjectURL_2(this, blob_OR_stream); | |
20 } | |
21 } | |
22 throw "Incorrect number or type of arguments"; | |
23 } | |
24 static String _createObjectURL(receiver, blob_OR_stream) native; | |
25 static String _createObjectURL_2(receiver, blob_OR_stream) native; | |
26 | |
27 void revokeObjectURL(String url) { | |
28 _revokeObjectURL(this, url); | |
29 return; | |
30 } | |
31 static void _revokeObjectURL(receiver, url) native; | |
32 | |
33 String get typeName() { return "DOMURL"; } | |
34 } | |
OLD | NEW |