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

Unified Diff: client/html/src/_FactoryProviders.dart

Issue 8548019: Add a script for determining which DOM methods correspond to which HTML methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More code review changes Created 9 years, 1 month 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: client/html/src/_FactoryProviders.dart
diff --git a/client/html/src/_FactoryProviders.dart b/client/html/src/_FactoryProviders.dart
index 11334a79eece3e574c2f6cf0deedf3c7b59638f6..212f922670c2d696acd8a44dc78f9608f079d159 100644
--- a/client/html/src/_FactoryProviders.dart
+++ b/client/html/src/_FactoryProviders.dart
@@ -23,6 +23,7 @@ class _CSSMatrixFactoryProvider {
class _PointFactoryProvider {
+ /** @domName DOMWindow.createWebKitPoint */
factory Point(num x, num y) {
return new PointWrappingImplementation._wrap(new dom.WebKitPoint(x, y));
}

Powered by Google App Engine
This is Rietveld 408576698