Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 12194010: Added constructor for touchlist. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
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";

Powered by Google App Engine
This is Rietveld 408576698