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

Unified Diff: lib/dom/templates/html/impl/impl_SVGElement.darttemplate

Issue 9732019: dart:html perf optimization based on runing Dromaeo benchmarks (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes Created 8 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: lib/dom/templates/html/impl/impl_SVGElement.darttemplate
diff --git a/lib/dom/templates/html/impl/impl_SVGElement.darttemplate b/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
index 5d30b11ecdde8ae22635f570e911abe966e1adf3..2b1406728dc092bc6925e0000d7766a044f78866 100644
--- a/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
+++ b/lib/dom/templates/html/impl/impl_SVGElement.darttemplate
@@ -5,7 +5,7 @@
class _AttributeClassSet extends _CssClassSet {
_AttributeClassSet(element) : super(element);
- String _className() => _element.attributes['class'];
+ String $dom_className() => _element.attributes['class'];
void _write(Set s) {
_element.attributes['class'] = _formatSet(s);

Powered by Google App Engine
This is Rietveld 408576698