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

Unified Diff: tools/dom/templates/html/impl/impl_Touch.darttemplate

Issue 12493003: Exposing Point & Rect types (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Sync to ToT Created 7 years, 9 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:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/impl/impl_Touch.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Touch.darttemplate b/tools/dom/templates/html/impl/impl_Touch.darttemplate
new file mode 100644
index 0000000000000000000000000000000000000000..f9efa4a4d9dfbaa611fa30aba5c6031ecc5846fc
--- /dev/null
+++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
@@ -0,0 +1,22 @@
+// Copyright (c) 2012, 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.
+
+part of $LIBRARYNAME;
+
+@DocsEditable
+$(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
+$!MEMBERS
+
+ @DomName('Touch.clientX')
+ @DomName('Touch.clientY')
+ Point get client => new Point($dom_clientX, $dom_clientY);
+
+ @DomName('Touch.pageX')
+ @DomName('Touch.pageY')
+ Point get page => new Point($dom_pageX, $dom_pageY);
+
+ @DomName('Touch.screenX')
+ @DomName('Touch.screenY')
+ Point get screen => new Point($dom_screenX, $dom_screenY);
+}
« no previous file with comments | « tools/dom/templates/html/impl/impl_ClientRect.darttemplate ('k') | tools/dom/templates/html/impl/impl_UIEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698