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

Unified Diff: chrome/renderer/resources/extensions/file_system_custom_bindings.js

Issue 1914643003: [Extensions] Update last_error.js, send_request.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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: 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 9588b63431bf5b0a948a55e7054c859e9dd8ea5a..50373b3fef5e5d79480fced8b10b453c85f622df 100644
--- a/chrome/renderer/resources/extensions/file_system_custom_bindings.js
+++ b/chrome/renderer/resources/extensions/file_system_custom_bindings.js
@@ -42,7 +42,7 @@ binding.registerCustomHook(function(bindingsAPI) {
var relativePath = $String.slice(fileEntry.fullPath, 1);
sendRequest.sendRequest(this.name, [id, fileSystemName, relativePath],
- this.definition.parameters, {});
+ this.definition.parameters);
return id;
});
@@ -57,7 +57,7 @@ binding.registerCustomHook(function(bindingsAPI) {
[true]);
} else {
sendRequest.sendRequest(
- this.name, [id, callback], this.definition.parameters, {});
+ this.name, [id, callback], this.definition.parameters);
}
});

Powered by Google App Engine
This is Rietveld 408576698