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

Unified Diff: client/dom/generated/src/wrapping/_FileWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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/dom/generated/src/wrapping/_FileWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_FileWrappingImplementation.dart b/client/dom/generated/src/wrapping/_FileWrappingImplementation.dart
index 3b05f835fb8a4970f05d17612b83039c32ced8fc..d9e043c2c28f00c1747ac917f615ace4d4361697 100644
--- a/client/dom/generated/src/wrapping/_FileWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_FileWrappingImplementation.dart
@@ -11,17 +11,17 @@ class _FileWrappingImplementation extends _BlobWrappingImplementation implements
return new _FileWrappingImplementation();
}
- String get fileName() { return _get__File_fileName(this); }
- static String _get__File_fileName(var _this) native;
+ String get fileName() { return _get_fileName(this); }
+ static String _get_fileName(var _this) native;
- int get fileSize() { return _get__File_fileSize(this); }
- static int _get__File_fileSize(var _this) native;
+ int get fileSize() { return _get_fileSize(this); }
+ static int _get_fileSize(var _this) native;
- Date get lastModifiedDate() { return _get__File_lastModifiedDate(this); }
- static Date _get__File_lastModifiedDate(var _this) native;
+ Date get lastModifiedDate() { return _get_lastModifiedDate(this); }
+ static Date _get_lastModifiedDate(var _this) native;
- String get name() { return _get__File_name(this); }
- static String _get__File_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
String get typeName() { return "File"; }
}

Powered by Google App Engine
This is Rietveld 408576698