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

Unified Diff: client/dom/templates/dom/frog/factoryprovider_WebKitCSSMatrix.darttemplate

Issue 9428050: Automatically generate most constructors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add test Created 8 years, 10 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: client/dom/templates/dom/frog/factoryprovider_WebKitCSSMatrix.darttemplate
diff --git a/client/dom/generated/src/interface/DOMURL.dart b/client/dom/templates/dom/frog/factoryprovider_WebKitCSSMatrix.darttemplate
similarity index 54%
copy from client/dom/generated/src/interface/DOMURL.dart
copy to client/dom/templates/dom/frog/factoryprovider_WebKitCSSMatrix.darttemplate
index 6744630cbc6a256ddc357ff222d2059d2ef38e02..6904b4411c62f7575d2f79557e7c160ff78e62ed 100644
--- a/client/dom/generated/src/interface/DOMURL.dart
+++ b/client/dom/templates/dom/frog/factoryprovider_WebKitCSSMatrix.darttemplate
@@ -2,7 +2,10 @@
// 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.
-// WARNING: Do not edit - generated code.
-
-interface DOMURL {
+class $FACTORYPROVIDER {
+ factory WebKitCSSMatrix([String cssValue = null]) native
+'''
+if (cssValue == null) return new WebKitCSSMatrix();
+return new WebKitCSSMatrix(cssValue);
+''';
}

Powered by Google App Engine
This is Rietveld 408576698