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

Unified Diff: client/html/generated/src/wrapping/_SVGExceptionWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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: client/html/generated/src/wrapping/_SVGExceptionWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_DOMExceptionWrappingImplementation.dart b/client/html/generated/src/wrapping/_SVGExceptionWrappingImplementation.dart
similarity index 65%
copy from client/html/generated/src/wrapping/_DOMExceptionWrappingImplementation.dart
copy to client/html/generated/src/wrapping/_SVGExceptionWrappingImplementation.dart
index a250a7d284337b7cb26f4b8ff4f17acce3693684..cb9d4c74db7c58abfa83e60cb27ab441740bd20d 100644
--- a/client/html/generated/src/wrapping/_DOMExceptionWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_SVGExceptionWrappingImplementation.dart
@@ -4,12 +4,16 @@
// WARNING: Do not edit - generated code.
-class DOMExceptionWrappingImplementation extends DOMWrapperBase implements DOMException {
- DOMExceptionWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
+class SVGExceptionWrappingImplementation extends DOMWrapperBase implements SVGException {
+ SVGExceptionWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
int get code() { return _ptr.code; }
String get message() { return _ptr.message; }
String get name() { return _ptr.name; }
+
+ String toString() {
+ return _ptr.toString();
+ }
}

Powered by Google App Engine
This is Rietveld 408576698