| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 5e060c522f818188619977f9cbb32663d04764cc..72d4c2d787de5f3c92c2ad41a6f0bb6b542f028a 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -25158,18 +25158,21 @@ class TouchEvent extends UIEvent {
|
| return Event._isTypeSupported('TouchEvent');
|
| }
|
| }
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2013, 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.
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
|
|
| -@DocsEditable
|
| @DomName('TouchList')
|
| class TouchList extends NativeFieldWrapperClass1 implements List<Touch> {
|
| + factory TouchList() => document.$dom_createTouchList();
|
| TouchList.internal();
|
|
|
| + /// Checks if this type is supported on the current platform.
|
| + static bool get supported => true;
|
| +
|
| @DomName('TouchList.length')
|
| @DocsEditable
|
| int get length native "TouchList_length_Getter";
|
|
|