OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/fileapi/file_system_file_util_proxy.h" | 5 #include "webkit/fileapi/file_system_file_util_proxy.h" |
6 | 6 |
7 #include "base/message_loop_proxy.h" | 7 #include "base/message_loop_proxy.h" |
8 #include "webkit/fileapi/file_system_context.h" | 8 #include "webkit/fileapi/file_system_context.h" |
9 #include "webkit/fileapi/file_system_file_util.h" | 9 #include "webkit/fileapi/file_system_file_util.h" |
10 #include "webkit/fileapi/file_system_operation_context.h" | 10 #include "webkit/fileapi/file_system_operation_context.h" |
11 | 11 |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 const FileSystemOperationContext& context, | 523 const FileSystemOperationContext& context, |
524 scoped_refptr<MessageLoopProxy> message_loop_proxy, | 524 scoped_refptr<MessageLoopProxy> message_loop_proxy, |
525 const FilePath& path, | 525 const FilePath& path, |
526 int64 length, | 526 int64 length, |
527 StatusCallback* callback) { | 527 StatusCallback* callback) { |
528 return Start(FROM_HERE, message_loop_proxy, | 528 return Start(FROM_HERE, message_loop_proxy, |
529 new RelayTruncate(context, path, length, callback)); | 529 new RelayTruncate(context, path, length, callback)); |
530 } | 530 } |
531 | 531 |
532 } // namespace fileapi | 532 } // namespace fileapi |
OLD | NEW |