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

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

Issue 2978213002: Removed DARTIUM codegen for IDLS (sdk/lib/dartium) (Closed)
Patch Set: Update generated darttemplate Created 3 years, 5 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_WebKitCSSKeyframesRule.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_WebKitCSSKeyframesRule.darttemplate b/tools/dom/templates/html/impl/impl_WebKitCSSKeyframesRule.darttemplate
index 3edff1d9f82a14c1309daef61f9730b1d9fcce41..19ee4ccb7e22bf0c0f925becf3166ecbf4c2d44f 100644
--- a/tools/dom/templates/html/impl/impl_WebKitCSSKeyframesRule.darttemplate
+++ b/tools/dom/templates/html/impl/impl_WebKitCSSKeyframesRule.darttemplate
@@ -8,7 +8,6 @@ part of $LIBRARYNAME;
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$MIXINS$IMPLEMENTS {
$!MEMBERS
-$if DART2JS
void appendRule(String rule) {
if (JS('bool', '("appendRule" in #)', this)) {
JS('', '#.appendRule(#)', this, rule);
@@ -16,5 +15,4 @@ $if DART2JS
JS('', '#.insertRule(#)', this, rule);
}
}
-$endif
}

Powered by Google App Engine
This is Rietveld 408576698