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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/bind.h" | 6 #include "base/bind.h" |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "webkit/browser/fileapi/copy_or_move_file_validator.h" |
11 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" | 12 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
12 #include "webkit/fileapi/async_file_test_helper.h" | 13 #include "webkit/fileapi/async_file_test_helper.h" |
13 #include "webkit/fileapi/copy_or_move_file_validator.h" | |
14 #include "webkit/fileapi/external_mount_points.h" | 14 #include "webkit/fileapi/external_mount_points.h" |
15 #include "webkit/fileapi/file_system_context.h" | 15 #include "webkit/fileapi/file_system_context.h" |
16 #include "webkit/fileapi/file_system_url.h" | 16 #include "webkit/fileapi/file_system_url.h" |
17 #include "webkit/fileapi/file_system_util.h" | 17 #include "webkit/fileapi/file_system_util.h" |
18 #include "webkit/fileapi/isolated_context.h" | 18 #include "webkit/fileapi/isolated_context.h" |
19 #include "webkit/fileapi/mock_file_system_context.h" | 19 #include "webkit/fileapi/mock_file_system_context.h" |
20 #include "webkit/fileapi/test_mount_point_provider.h" | 20 #include "webkit/fileapi/test_mount_point_provider.h" |
21 #include "webkit/quota/mock_special_storage_policy.h" | 21 #include "webkit/quota/mock_special_storage_policy.h" |
22 | 22 |
23 namespace fileapi { | 23 namespace fileapi { |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 271 |
272 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory( | 272 scoped_ptr<CopyOrMoveFileValidatorFactory> accept_factory( |
273 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/)); | 273 new TestCopyOrMoveFileValidatorFactory(true /*accept_all*/)); |
274 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass()); | 274 helper.SetMediaCopyOrMoveFileValidatorFactory(accept_factory.Pass()); |
275 | 275 |
276 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY); | 276 helper.CopyTest(base::PLATFORM_FILE_ERROR_SECURITY); |
277 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY); | 277 helper.MoveTest(base::PLATFORM_FILE_ERROR_SECURITY); |
278 } | 278 } |
279 | 279 |
280 } // namespace fileapi | 280 } // namespace fileapi |
OLD | NEW |