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

Unified Diff: sdk/lib/svg/dartium/svg_dartium.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/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dartium/svg_dartium.dart
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
index 1095161aefbd36b6822d5fee3d9939ebb0335ea6..8859092bd2f58835076f32f52949cbf573715243 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -5306,7 +5306,7 @@ class SvgDocument extends Document {
@DomName('SVGDocument.createEvent')
@DocsEditable()
- Event $dom_createEvent(String eventType) native "SVGDocument_createEvent_Callback";
+ Event _createEvent(String eventType) native "SVGDocument_createEvent_Callback";
}
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
@@ -5403,8 +5403,8 @@ class SvgElement extends Element {
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;
@@ -5427,7 +5427,7 @@ class SvgElement extends Element {
@DomName('SVGElement.className')
@DocsEditable()
@Experimental() // untriaged
- AnimatedString get $dom_svgClassName native "SVGElement_className_Getter";
+ AnimatedString get _svgClassName native "SVGElement_className_Getter";
@DomName('SVGElement.ownerSVGElement')
@DocsEditable()
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698