| Index: lib/html/src/CompositionEventWrappingImplementation.dart
|
| diff --git a/lib/html/src/CompositionEventWrappingImplementation.dart b/lib/html/src/CompositionEventWrappingImplementation.dart
|
| deleted file mode 100644
|
| index 765f02238b1097e0a2283f4b9216ce50c41a70e6..0000000000000000000000000000000000000000
|
| --- a/lib/html/src/CompositionEventWrappingImplementation.dart
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -class CompositionEventWrappingImplementation extends UIEventWrappingImplementation implements CompositionEvent {
|
| - CompositionEventWrappingImplementation._wrap(ptr) : super._wrap(ptr);
|
| -
|
| - factory CompositionEventWrappingImplementation(String type, Window view,
|
| - String data, [bool canBubble = true, bool cancelable = true]) {
|
| - final e = dom.document.createEvent("CompositionEvent");
|
| - e.initCompositionEvent(type, canBubble, cancelable, LevelDom.unwrap(view),
|
| - data);
|
| - return LevelDom.wrapCompositionEvent(e);
|
| - }
|
| -
|
| - String get data() => _ptr.data;
|
| -}
|
|
|