OLD | NEW |
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 Loading... |
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 |
OLD | NEW |