| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/chromeos/fileapi/remote_file_system_operation.h" | 5 #include "webkit/chromeos/fileapi/remote_file_system_operation.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "base/platform_file.h" | 9 #include "base/platform_file.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 const base::PlatformFileInfo& file_info, | 312 const base::PlatformFileInfo& file_info, |
| 313 const base::FilePath& platform_path, | 313 const base::FilePath& platform_path, |
| 314 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { | 314 const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) { |
| 315 callback.Run(result, file_info, platform_path, file_ref); | 315 callback.Run(result, file_info, platform_path, file_ref); |
| 316 } | 316 } |
| 317 | 317 |
| 318 void RemoteFileSystemOperation::DidOpenFile( | 318 void RemoteFileSystemOperation::DidOpenFile( |
| 319 const OpenFileCallback& callback, | 319 const OpenFileCallback& callback, |
| 320 base::PlatformFileError result, | 320 base::PlatformFileError result, |
| 321 base::PlatformFile file, | 321 base::PlatformFile file, |
| 322 base::ProcessHandle peer_handle) { | 322 base::ProcessHandle peer_handle, |
| 323 callback.Run(result, file, peer_handle); | 323 quota::QuotaLimitType quota_limit_type) { |
| 324 callback.Run(result, file, peer_handle, quota_limit_type); |
| 324 } | 325 } |
| 325 | 326 |
| 326 } // namespace chromeos | 327 } // namespace chromeos |
| OLD | NEW |