summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authormtomasz <mtomasz@chromium.org>2015-07-13 19:15:21 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-14 02:15:51 +0000
commitcef2e44e21e1efc3768949175ec3d1b6a846104b (patch)
treeece29747898ae10211f5d976b9f940c8d38c610d /third_party
parente1432c4d3bd4b0cd2efac3e2845dac55c2d9cac5 (diff)
downloadchromium_src-cef2e44e21e1efc3768949175ec3d1b6a846104b.zip
chromium_src-cef2e44e21e1efc3768949175ec3d1b6a846104b.tar.gz
chromium_src-cef2e44e21e1efc3768949175ec3d1b6a846104b.tar.bz2
Update computeChecksum to accept entries instead of urls.
NOPRESUBMIT=true TBR=isherman@chromium.org TEST=browser_tests: *FileManager*Checksum* BUG=507210 Review URL: https://codereview.chromium.org/1211413005 Cr-Commit-Position: refs/heads/master@{#338622}
Diffstat (limited to 'third_party')
-rw-r--r--third_party/closure_compiler/externs/file_manager_private.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/closure_compiler/externs/file_manager_private.js b/third_party/closure_compiler/externs/file_manager_private.js
index 8696973..97357c0 100644
--- a/third_party/closure_compiler/externs/file_manager_private.js
+++ b/third_party/closure_compiler/externs/file_manager_private.js
@@ -571,10 +571,10 @@ chrome.fileManagerPrivate.openInspector = function(type) {};
/**
* Computes an MD5 checksum for the given file.
- * @param {string} fileUrl
+ * @param {!Entry} entry
* @param {function(string)} callback
*/
-chrome.fileManagerPrivate.computeChecksum = function(fileUrl, callback) {};
+chrome.fileManagerPrivate.computeChecksum = function(entry, callback) {};
/**
* Gets the MIME type of a file.