OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <set> | 5 #include <set> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "webkit/browser/fileapi/async_file_util_adapter.h" | 22 #include "webkit/browser/fileapi/async_file_util_adapter.h" |
23 #include "webkit/browser/fileapi/external_mount_points.h" | 23 #include "webkit/browser/fileapi/external_mount_points.h" |
24 #include "webkit/browser/fileapi/file_system_context.h" | 24 #include "webkit/browser/fileapi/file_system_context.h" |
25 #include "webkit/browser/fileapi/file_system_file_util.h" | 25 #include "webkit/browser/fileapi/file_system_file_util.h" |
26 #include "webkit/browser/fileapi/file_system_operation.h" | 26 #include "webkit/browser/fileapi/file_system_operation.h" |
27 #include "webkit/browser/fileapi/file_system_operation_context.h" | 27 #include "webkit/browser/fileapi/file_system_operation_context.h" |
28 #include "webkit/browser/fileapi/file_system_task_runners.h" | 28 #include "webkit/browser/fileapi/file_system_task_runners.h" |
29 #include "webkit/browser/fileapi/isolated_context.h" | 29 #include "webkit/browser/fileapi/isolated_context.h" |
30 #include "webkit/browser/fileapi/local_file_system_operation.h" | 30 #include "webkit/browser/fileapi/local_file_system_operation.h" |
31 #include "webkit/browser/fileapi/mock_file_system_options.h" | 31 #include "webkit/browser/fileapi/mock_file_system_options.h" |
32 #include "webkit/quota/mock_special_storage_policy.h" | 32 #include "webkit/browser/quota/mock_special_storage_policy.h" |
33 | 33 |
34 using fileapi::FileSystemFileUtil; | 34 using fileapi::FileSystemFileUtil; |
35 using fileapi::FileSystemOperation; | 35 using fileapi::FileSystemOperation; |
36 using fileapi::FileSystemOperationContext; | 36 using fileapi::FileSystemOperationContext; |
37 using fileapi::FileSystemURL; | 37 using fileapi::FileSystemURL; |
38 | 38 |
39 namespace picasa { | 39 namespace picasa { |
40 | 40 |
41 namespace { | 41 namespace { |
42 | 42 |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 new TestFolder(base::StringPrintf("folder-%05d", i), | 474 new TestFolder(base::StringPrintf("folder-%05d", i), |
475 date, | 475 date, |
476 base::StringPrintf("uid%05d", i), i % 5, i % 3)); | 476 base::StringPrintf("uid%05d", i), i % 5, i % 3)); |
477 } | 477 } |
478 | 478 |
479 SetupFolders(&test_folders); | 479 SetupFolders(&test_folders); |
480 VerifyFolderDirectoryList(test_folders); | 480 VerifyFolderDirectoryList(test_folders); |
481 } | 481 } |
482 | 482 |
483 } // namespace chrome | 483 } // namespace chrome |
OLD | NEW |