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

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

Issue 23055008: Making almost all dom_ methods private. Exceptions will be addressed in a later CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 ed6690a1710a696df5d6bfd2f23499f105e767d7..1c14ff70815255a512634f551210b1960a5aed20 100644
--- a/tools/dom/templates/html/impl/impl_Touch.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Touch.darttemplate
@@ -10,13 +10,13 @@ $!MEMBERS
@DomName('Touch.clientX')
@DomName('Touch.clientY')
- Point get client => new Point($dom_clientX, $dom_clientY);
+ Point get client => new Point(_clientX, _clientY);
@DomName('Touch.pageX')
@DomName('Touch.pageY')
- Point get page => new Point($dom_pageX, $dom_pageY);
+ Point get page => new Point(_pageX, _pageY);
@DomName('Touch.screenX')
@DomName('Touch.screenY')
- Point get screen => new Point($dom_screenX, $dom_screenY);
+ Point get screen => new Point(_screenX, _screenY);
}
« no previous file with comments | « tools/dom/templates/html/impl/impl_TextEvent.darttemplate ('k') | tools/dom/templates/html/impl/impl_TouchEvent.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698