| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, 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 /// @domName DOMPlugin |
| 8 interface DOMPlugin { |
| 9 |
| 10 /** @domName DOMPlugin.description */ |
| 11 final String description; |
| 12 |
| 13 /** @domName DOMPlugin.filename */ |
| 14 final String filename; |
| 15 |
| 16 /** @domName DOMPlugin.length */ |
| 17 final int length; |
| 18 |
| 19 /** @domName DOMPlugin.name */ |
| 20 final String name; |
| 21 |
| 22 /** @domName DOMPlugin.item */ |
| 23 DOMMimeType item(int index); |
| 24 |
| 25 /** @domName DOMPlugin.namedItem */ |
| 26 DOMMimeType namedItem(String name); |
| 27 } |
| OLD | NEW |