OLD | NEW |
1 // Copyright (c) 2011 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 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/file_util_proxy.h" | 12 #include "base/file_util_proxy.h" |
13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_callback_factory.h" | |
16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
17 #include "base/message_loop_proxy.h" | 16 #include "base/message_loop_proxy.h" |
18 #include "base/platform_file.h" | 17 #include "base/platform_file.h" |
19 #include "base/process.h" | 18 #include "base/process.h" |
20 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
21 #include "webkit/fileapi/file_system_operation_context.h" | 20 #include "webkit/fileapi/file_system_operation_context.h" |
22 #include "webkit/fileapi/file_system_operation_interface.h" | 21 #include "webkit/fileapi/file_system_operation_interface.h" |
23 #include "webkit/fileapi/file_system_types.h" | 22 #include "webkit/fileapi/file_system_types.h" |
24 #include "webkit/quota/quota_manager.h" | 23 #include "webkit/quota/quota_manager.h" |
25 | 24 |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 // write. | 281 // write. |
283 FilePath src_virtual_path_; | 282 FilePath src_virtual_path_; |
284 FilePath dest_virtual_path_; | 283 FilePath dest_virtual_path_; |
285 | 284 |
286 DISALLOW_COPY_AND_ASSIGN(FileSystemOperation); | 285 DISALLOW_COPY_AND_ASSIGN(FileSystemOperation); |
287 }; | 286 }; |
288 | 287 |
289 } // namespace fileapi | 288 } // namespace fileapi |
290 | 289 |
291 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ | 290 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_ |
OLD | NEW |