From af49ab9c6c71ecccfc7f84dcd8386d0f4b666aed Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 13:41:15 -0800 Subject: [PATCH] Add callback param to getAllPathsAsync signature --- native/v8_extensions/native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/v8_extensions/native.js b/native/v8_extensions/native.js index ea54e8841..6e17b135e 100644 --- a/native/v8_extensions/native.js +++ b/native/v8_extensions/native.js @@ -16,7 +16,7 @@ var $native = {}; native function traverseTree(path, onFile, onDirectory); $native.traverseTree = traverseTree; - native function getAllPathsAsync(path); + native function getAllPathsAsync(path, callback); $native.getAllPathsAsync = getAllPathsAsync; native function isFile(path);