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

Unified Diff: client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.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/_EntrySyncWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.dart b/client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.dart
index 6a9cd81ee5539548320b115cb5576da0e636fabb..1c5b2e2b0df87afdf88b9d1ccca06bab4fcbdb9b 100644
--- a/client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_EntrySyncWrappingImplementation.dart
@@ -11,20 +11,20 @@ class _EntrySyncWrappingImplementation extends DOMWrapperBase implements EntrySy
return new _EntrySyncWrappingImplementation();
}
- DOMFileSystemSync get filesystem() { return _get__EntrySync_filesystem(this); }
- static DOMFileSystemSync _get__EntrySync_filesystem(var _this) native;
+ DOMFileSystemSync get filesystem() { return _get_filesystem(this); }
+ static DOMFileSystemSync _get_filesystem(var _this) native;
- String get fullPath() { return _get__EntrySync_fullPath(this); }
- static String _get__EntrySync_fullPath(var _this) native;
+ String get fullPath() { return _get_fullPath(this); }
+ static String _get_fullPath(var _this) native;
- bool get isDirectory() { return _get__EntrySync_isDirectory(this); }
- static bool _get__EntrySync_isDirectory(var _this) native;
+ bool get isDirectory() { return _get_isDirectory(this); }
+ static bool _get_isDirectory(var _this) native;
- bool get isFile() { return _get__EntrySync_isFile(this); }
- static bool _get__EntrySync_isFile(var _this) native;
+ bool get isFile() { return _get_isFile(this); }
+ static bool _get_isFile(var _this) native;
- String get name() { return _get__EntrySync_name(this); }
- static String _get__EntrySync_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
EntrySync copyTo(DirectoryEntrySync parent, String name) {
return _copyTo(this, parent, name);

Powered by Google App Engine
This is Rietveld 408576698