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

Unified Diff: client/html/generated/src/wrapping/_DirectoryEntryWrappingImplementation.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/_DirectoryEntryWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_DirectoryEntryWrappingImplementation.dart b/client/html/generated/src/wrapping/_DirectoryEntryWrappingImplementation.dart
index c8526a00c2a77ec157c5d01d1fca4b65f92df11d..9fe41eddc2133aabc2db9f89723155e34368a995 100644
--- a/client/html/generated/src/wrapping/_DirectoryEntryWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_DirectoryEntryWrappingImplementation.dart
@@ -11,7 +11,7 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
return LevelDom.wrapDirectoryReader(_ptr.createReader());
}
- void getDirectory(String path, [Flags flags = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
+ void getDirectory(String path, [Flags flags, EntryCallback successCallback, ErrorCallback errorCallback]) {
if (flags === null) {
if (successCallback === null) {
if (errorCallback === null) {
@@ -27,10 +27,10 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
}
} else {
if (errorCallback === null) {
- _ptr.getDirectory(path, LevelDom.unwrap(flags), LevelDom.unwrap(successCallback));
+ _ptr.getDirectory(path, LevelDom.unwrap(flags), successCallback);
return;
} else {
- _ptr.getDirectory(path, LevelDom.unwrap(flags), LevelDom.unwrap(successCallback), LevelDom.unwrap(errorCallback));
+ _ptr.getDirectory(path, LevelDom.unwrap(flags), successCallback, LevelDom.unwrap(errorCallback));
return;
}
}
@@ -38,7 +38,7 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
throw "Incorrect number or type of arguments";
}
- void getFile(String path, [Flags flags = null, EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
+ void getFile(String path, [Flags flags, EntryCallback successCallback, ErrorCallback errorCallback]) {
if (flags === null) {
if (successCallback === null) {
if (errorCallback === null) {
@@ -54,10 +54,10 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
}
} else {
if (errorCallback === null) {
- _ptr.getFile(path, LevelDom.unwrap(flags), LevelDom.unwrap(successCallback));
+ _ptr.getFile(path, LevelDom.unwrap(flags), successCallback);
return;
} else {
- _ptr.getFile(path, LevelDom.unwrap(flags), LevelDom.unwrap(successCallback), LevelDom.unwrap(errorCallback));
+ _ptr.getFile(path, LevelDom.unwrap(flags), successCallback, LevelDom.unwrap(errorCallback));
return;
}
}
@@ -65,7 +65,7 @@ class DirectoryEntryWrappingImplementation extends EntryWrappingImplementation i
throw "Incorrect number or type of arguments";
}
- void removeRecursively([VoidCallback successCallback = null, ErrorCallback errorCallback = null]) {
+ void removeRecursively([VoidCallback successCallback, ErrorCallback errorCallback]) {
if (successCallback === null) {
if (errorCallback === null) {
_ptr.removeRecursively();

Powered by Google App Engine
This is Rietveld 408576698