| 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 DOMPluginWrappingImplementation extends DOMWrapperBase implements DOMPlugi
n { | |
| 8 DOMPluginWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | |
| 9 | |
| 10 String get description() { return _ptr.description; } | |
| 11 | |
| 12 String get filename() { return _ptr.filename; } | |
| 13 | |
| 14 int get length() { return _ptr.length; } | |
| 15 | |
| 16 String get name() { return _ptr.name; } | |
| 17 | |
| 18 DOMMimeType item(int index) { | |
| 19 return LevelDom.wrapDOMMimeType(_ptr.item(index)); | |
| 20 } | |
| 21 | |
| 22 DOMMimeType namedItem(String name) { | |
| 23 return LevelDom.wrapDOMMimeType(_ptr.namedItem(name)); | |
| 24 } | |
| 25 } | |
| OLD | NEW |