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

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

Issue 1832713002: Optimize dartium dart:html bindings so real world application performance is acceptable. Improves d… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: update cached patches Created 4 years, 9 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_HTMLElement.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate
index 1d126319e53388315f106ecdf964f9255fe309a9..2f16d16aafcee46035e069b8696765e3202ec689 100644
--- a/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate
+++ b/tools/dom/templates/html/impl/impl_HTMLElement.darttemplate
@@ -7,18 +7,4 @@ part of $LIBRARYNAME;
@DocsEditable()
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
$!MEMBERS
-$if DARTIUM
- // Flags to only try upgrading once. If there's a failure don't try upgrading
- // anymore.
- bool _badUpgradeOccurred = false;
-
- /// Required for SDK Infrastructure. Internal use only.
- ///
- /// Did this encounter a failure attempting to upgrade to
- /// a custom element.
- @Deprecated("Required for SDK Infrastructure. Internal use only.")
- bool get isBadUpgrade => _badUpgradeOccurred;
-
- void _badUpgrade() { _badUpgradeOccurred = true; }
-$endif
}

Powered by Google App Engine
This is Rietveld 408576698