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

Unified Diff: client/dom/generated/src/wrapping/_EntryWrappingImplementation.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/_EntryWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart b/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart
index 70b9694ccf4c07d6c74c82ac159805af51fe53fa..a0230b85768c3ef19cda079db675f2817fb49659 100644
--- a/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_EntryWrappingImplementation.dart
@@ -11,20 +11,20 @@ class _EntryWrappingImplementation extends DOMWrapperBase implements Entry {
return new _EntryWrappingImplementation();
}
- DOMFileSystem get filesystem() { return _get__Entry_filesystem(this); }
- static DOMFileSystem _get__Entry_filesystem(var _this) native;
+ DOMFileSystem get filesystem() { return _get_filesystem(this); }
+ static DOMFileSystem _get_filesystem(var _this) native;
- String get fullPath() { return _get__Entry_fullPath(this); }
- static String _get__Entry_fullPath(var _this) native;
+ String get fullPath() { return _get_fullPath(this); }
+ static String _get_fullPath(var _this) native;
- bool get isDirectory() { return _get__Entry_isDirectory(this); }
- static bool _get__Entry_isDirectory(var _this) native;
+ bool get isDirectory() { return _get_isDirectory(this); }
+ static bool _get_isDirectory(var _this) native;
- bool get isFile() { return _get__Entry_isFile(this); }
- static bool _get__Entry_isFile(var _this) native;
+ bool get isFile() { return _get_isFile(this); }
+ static bool _get_isFile(var _this) native;
- String get name() { return _get__Entry_name(this); }
- static String _get__Entry_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
void copyTo(DirectoryEntry parent, [String name = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
if (name === null) {

Powered by Google App Engine
This is Rietveld 408576698