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

Side by Side Diff: trunk/src/chrome/browser/chromeos/file_system_provider/operations/open_file.cc

Issue 342003004: Revert 277929 "[fsp] Cleanup handling errors for operation reque..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/file_system_provider/operations/open_file.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/open_file.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "chrome/common/extensions/api/file_system_provider.h" 9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h" 10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 values.Pass()); 57 values.Pass());
58 } 58 }
59 59
60 void OpenFile::OnSuccess(int request_id, 60 void OpenFile::OnSuccess(int request_id,
61 scoped_ptr<RequestValue> result, 61 scoped_ptr<RequestValue> result,
62 bool has_more) { 62 bool has_more) {
63 // File handle is the same as request id of the OpenFile operation. 63 // File handle is the same as request id of the OpenFile operation.
64 callback_.Run(request_id, base::File::FILE_OK); 64 callback_.Run(request_id, base::File::FILE_OK);
65 } 65 }
66 66
67 void OpenFile::OnError(int /* request_id */, 67 void OpenFile::OnError(int /* request_id */, base::File::Error error) {
68 scoped_ptr<RequestValue> /* result */,
69 base::File::Error error) {
70 callback_.Run(0 /* file_handle */, error); 68 callback_.Run(0 /* file_handle */, error);
71 } 69 }
72 70
73 } // namespace operations 71 } // namespace operations
74 } // namespace file_system_provider 72 } // namespace file_system_provider
75 } // namespace chromeos 73 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698