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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 values->AppendBoolean(create_); | 48 values->AppendBoolean(create_); |
49 | 49 |
50 return SendEvent( | 50 return SendEvent( |
51 request_id, | 51 request_id, |
52 extensions::api::file_system_provider::OnOpenFileRequested::kEventName, | 52 extensions::api::file_system_provider::OnOpenFileRequested::kEventName, |
53 values.Pass()); | 53 values.Pass()); |
54 } | 54 } |
55 | 55 |
56 void OpenFile::OnSuccess(int request_id, | 56 void OpenFile::OnSuccess(int request_id, |
57 scoped_ptr<RequestValue> result, | 57 scoped_ptr<RequestValue> result, |
58 bool has_next) { | 58 bool has_more) { |
59 // File handle is the same as request id of the OpenFile operation. | 59 // File handle is the same as request id of the OpenFile operation. |
60 callback_.Run(request_id, base::File::FILE_OK); | 60 callback_.Run(request_id, base::File::FILE_OK); |
61 } | 61 } |
62 | 62 |
63 void OpenFile::OnError(int /* request_id */, base::File::Error error) { | 63 void OpenFile::OnError(int /* request_id */, base::File::Error error) { |
64 callback_.Run(0 /* file_handle */, error); | 64 callback_.Run(0 /* file_handle */, error); |
65 } | 65 } |
66 | 66 |
67 } // namespace operations | 67 } // namespace operations |
68 } // namespace file_system_provider | 68 } // namespace file_system_provider |
69 } // namespace chromeos | 69 } // namespace chromeos |
OLD | NEW |