| 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 DOMMimeType |
| 8 interface DOMMimeType { |
| 9 |
| 10 /** @domName DOMMimeType.description */ |
| 11 final String description; |
| 12 |
| 13 /** @domName DOMMimeType.enabledPlugin */ |
| 14 final DOMPlugin enabledPlugin; |
| 15 |
| 16 /** @domName DOMMimeType.suffixes */ |
| 17 final String suffixes; |
| 18 |
| 19 /** @domName DOMMimeType.type */ |
| 20 final String type; |
| 21 } |
| OLD | NEW |