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

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

Issue 589253002: Revert "Chrome 38 script changes from integration branch" (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
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 095e6a0f04fd2534fc89c0b71d9bbc69467b0854..a75cd7d2b151e11ca6e8631a429efa1b5fd3b08a 100644
--- a/tools/dom/templates/html/impl/impl_Touch.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
@@ -17,8 +17,8 @@ $if DART2JS
int get __screenY => JS('num', '#.screenY', this).round();
int get __pageX => JS('num', '#.pageX', this).round();
int get __pageY => JS('num', '#.pageY', this).round();
- int get __radiusX => JS('num', '#.radiusX', this).round();
- int get __radiusY => JS('num', '#.radiusY', this).round();
+ 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();
@@ -26,8 +26,8 @@ $else
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 __radiusX => _blink.BlinkTouch.radiusX_Getter(this).round();
- int get __radiusY => _blink.BlinkTouch.radiusY_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')
@@ -42,18 +42,18 @@ $endif
@DomName('Touch.screenY')
Point get screen => new Point(__screenX, __screenY);
- @DomName('Touch.radiusX')
+ @DomName('Touch.webkitRadiusX')
@DocsEditable()
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
- int get radiusX => __radiusX;
+ int get radiusX => __webkitRadiusX;
- @DomName('Touch.radiusY')
+ @DomName('Touch.webkitRadiusY')
@DocsEditable()
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.SAFARI)
@Experimental()
- int get radiusY => __radiusY;
+ int get radiusY => __webkitRadiusY;
}
« no previous file with comments | « tools/dom/templates/html/impl/impl_IDBIndex.darttemplate ('k') | tools/dom/templates/html/impl/impl_WheelEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698