Nix fs.async.* methods. They aren't needed now.

This commit is contained in:
Corey Johnson & Nathan Sobo
2012-08-30 16:12:15 -06:00
parent 08b9d69f59
commit bd1982ede1
4 changed files with 0 additions and 36 deletions

View File

@@ -25,9 +25,6 @@ var $native = {};
native function remove(path);
$native.remove = remove;
native function asyncList(path, recursive, callback);
$native.asyncList = asyncList;
native function open(path);
$native.open = open;

View File

@@ -159,9 +159,6 @@ bool Native::Execute(const CefString& name,
return true;
}
else if (name == "asyncList") {
return false;
}
else if (name == "writeToPasteboard") {
NSString *text = stringFromCefV8Value(arguments[0]);