| 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 ElementTimeControlWrappingImplementation extends DOMWrapperBase implements
ElementTimeControl { |
| 8 ElementTimeControlWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 9 |
| 10 void beginElement() { |
| 11 _ptr.beginElement(); |
| 12 return; |
| 13 } |
| 14 |
| 15 void beginElementAt(num offset) { |
| 16 _ptr.beginElementAt(offset); |
| 17 return; |
| 18 } |
| 19 |
| 20 void endElement() { |
| 21 _ptr.endElement(); |
| 22 return; |
| 23 } |
| 24 |
| 25 void endElementAt(num offset) { |
| 26 _ptr.endElementAt(offset); |
| 27 return; |
| 28 } |
| 29 } |
| OLD | NEW |