| Index: chrome/renderer/resources/extensions/file_system_custom_bindings.js
|
| diff --git a/chrome/renderer/resources/extensions/file_system_custom_bindings.js b/chrome/renderer/resources/extensions/file_system_custom_bindings.js
|
| index 5553ae93776113577a4939eccf914cd1b852701e..62a9ad6889f033218826e091121e4345e019de13 100644
|
| --- a/chrome/renderer/resources/extensions/file_system_custom_bindings.js
|
| +++ b/chrome/renderer/resources/extensions/file_system_custom_bindings.js
|
| @@ -94,6 +94,16 @@ binding.registerCustomHook(function(bindingsAPI) {
|
| [fileSystem]);
|
| });
|
|
|
| + apiFunctions.setCustomCallback('getVolumeList',
|
| + function(name, request, callback, response) {
|
| + var volumeList = response || null;
|
| + sendRequest.safeCallbackApply(
|
| + 'fileSystem.getVolumeList',
|
| + request,
|
| + callback,
|
| + [volumeList]);
|
| + });
|
| +
|
| // TODO(benwells): Remove these deprecated versions of the functions.
|
| fileSystem.getWritableFileEntry = function() {
|
| console.log("chrome.fileSystem.getWritableFileEntry is deprecated");
|
|
|