summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/file_system_provider/operations/unmount.h
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-18 22:23:23 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-18 22:23:23 +0000
commit78a7a38fe796fdee9e476635b470ea43fa95ce7c (patch)
tree811ea57184eb6ea3a9c066dd286c6389180ce634 /chrome/browser/chromeos/file_system_provider/operations/unmount.h
parentf9790db3deb08333fefa7699c671af128c484a9c (diff)
downloadchromium_src-78a7a38fe796fdee9e476635b470ea43fa95ce7c.zip
chromium_src-78a7a38fe796fdee9e476635b470ea43fa95ce7c.tar.gz
chromium_src-78a7a38fe796fdee9e476635b470ea43fa95ce7c.tar.bz2
Revert 277929 "[fsp] Cleanup handling errors for operation reque..."
> [fsp] Cleanup handling errors for operation requests. > > This CL removes redundant internal functions which are identical, and replaces > them with one. > > Moreover, the new general purpose error API function, passes now the entire > value to the request manager. This is because, very soon, we are going to > pass extra information with every error and success responses and we want to > have access to them in the RequestManager. > > NOTRY=true > TEST=unit_tests, browser_tests: *FileSystemProvider* > BUG=373165, 384201 > > Review URL: https://codereview.chromium.org/335753004 TBR=mtomasz@chromium.org Review URL: https://codereview.chromium.org/342003004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278186 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/file_system_provider/operations/unmount.h')
-rw-r--r--chrome/browser/chromeos/file_system_provider/operations/unmount.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/file_system_provider/operations/unmount.h b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
index b6614d4..948b540 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/unmount.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/unmount.h
@@ -39,9 +39,7 @@ class Unmount : public Operation {
virtual void OnSuccess(int request_id,
scoped_ptr<RequestValue> result,
bool has_more) OVERRIDE;
- virtual void OnError(int request_id,
- scoped_ptr<RequestValue> result,
- base::File::Error error) OVERRIDE;
+ virtual void OnError(int request_id, base::File::Error error) OVERRIDE;
private:
const fileapi::AsyncFileUtil::StatusCallback callback_;