diff options
author | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-04 02:21:56 +0000 |
---|---|---|
committer | mtomasz@chromium.org <mtomasz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-04 02:21:56 +0000 |
commit | b5c53f634287096fb3aa2a368591caf4a7cd4809 (patch) | |
tree | b450430e3b23ca9233e69a0c7ecbdc5de4c8b832 /chrome/common/extensions/api/file_browser_private.idl | |
parent | 5387fdd7cd0897297984ca90cdfdf444a9a509f2 (diff) | |
download | chromium_src-b5c53f634287096fb3aa2a368591caf4a7cd4809.zip chromium_src-b5c53f634287096fb3aa2a368591caf4a7cd4809.tar.gz chromium_src-b5c53f634287096fb3aa2a368591caf4a7cd4809.tar.bz2 |
Use volumeId instead of mountPath in fileBrowserPrivate.removeMount()
Since mountPath is being deprecated, this patch makes the removeMount() use volumeId. This significantly simplifies the code.
TEST=Tested manually with an archive.
BUG=316077
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=248147
R=benwells@chromium.org, kinaba@chromium.org
Review URL: https://codereview.chromium.org/135183013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@248666 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/api/file_browser_private.idl')
-rw-r--r-- | chrome/common/extensions/api/file_browser_private.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/api/file_browser_private.idl b/chrome/common/extensions/api/file_browser_private.idl index f6a4f6a..ea99906 100644 --- a/chrome/common/extensions/api/file_browser_private.idl +++ b/chrome/common/extensions/api/file_browser_private.idl @@ -585,8 +585,8 @@ interface Functions { static void addMount(DOMString source, AddMountCallback callback); // Unmounts a mounted resource. - // |mountPath| A path of the mount. - static void removeMount(DOMString mountPath); + // |volumeId| An ID of the volume. + static void removeMount(DOMString volumeId); // Get the list of mounted volumes. // |callback| |