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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 23055008: Making almost all dom_ methods private. Exceptions will be addressed in a later CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index f5066ee1ee5277d330d638238397421631f48259..cf6b778bae5f05523180979cc3e33562fd6383d3 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -4817,8 +4817,8 @@ class SvgElement extends Element native "SVGElement" {
throw new UnsupportedError("Cannot invoke insertAdjacentElement on SVG.");
}
- HtmlCollection get $dom_children {
- throw new UnsupportedError("Cannot get dom_children on SVG.");
+ HtmlCollection get _children {
+ throw new UnsupportedError("Cannot get _children on SVG.");
}
bool get isContentEditable => false;
@@ -4839,7 +4839,7 @@ class SvgElement extends Element native "SVGElement" {
factory SvgElement._() { throw new UnsupportedError("Not supported"); }
// Shadowing definition.
- AnimatedString get $dom_svgClassName => JS("AnimatedString", "#.className", this);
+ AnimatedString get _svgClassName => JS("AnimatedString", "#.className", this);
@JSName('ownerSVGElement')
@DomName('SVGElement.ownerSVGElement')
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698