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

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

Issue 552533004: Blink uses types in resolvers and entry points (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
« no previous file with comments | « tools/dom/templates/html/impl/impl_FileReader.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index d7faec75a7c0bfed759707dae7383b465dc7e32f..a75cd7d2b151e11ca6e8631a429efa1b5fd3b08a 100644
--- a/tools/dom/templates/html/impl/impl_Touch.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
@@ -20,14 +20,14 @@ $if DART2JS
int get __webkitRadiusX => JS('num', '#.webkitRadiusX', this).round();
int get __webkitRadiusY => JS('num', '#.webkitRadiusY', this).round();
$else
- int get __clientX => _blink.BlinkTouch.$clientX_Getter(this).round();
- int get __clientY => _blink.BlinkTouch.$clientY_Getter(this).round();
- int get __screenX => _blink.BlinkTouch.$screenX_Getter(this).round();
- int get __screenY => _blink.BlinkTouch.$screenY_Getter(this).round();
- int get __pageX => _blink.BlinkTouch.$pageX_Getter(this).round();
- int get __pageY => _blink.BlinkTouch.$pageY_Getter(this).round();
- int get __webkitRadiusX => _blink.BlinkTouch.$webkitRadiusX_Getter(this).round();
- int get __webkitRadiusY => _blink.BlinkTouch.$webkitRadiusY_Getter(this).round();
+ int get __clientX => _blink.BlinkTouch.clientX_Getter(this).round();
+ int get __clientY => _blink.BlinkTouch.clientY_Getter(this).round();
+ int get __screenX => _blink.BlinkTouch.screenX_Getter(this).round();
+ int get __screenY => _blink.BlinkTouch.screenY_Getter(this).round();
+ int get __pageX => _blink.BlinkTouch.pageX_Getter(this).round();
+ int get __pageY => _blink.BlinkTouch.pageY_Getter(this).round();
+ int get __webkitRadiusX => _blink.BlinkTouch.webkitRadiusX_Getter(this).round();
+ int get __webkitRadiusY => _blink.BlinkTouch.webkitRadiusY_Getter(this).round();
$endif
@DomName('Touch.clientX')
« no previous file with comments | « tools/dom/templates/html/impl/impl_FileReader.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698