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 <set> | 5 #include <set> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/scoped_temp_dir.h" | 10 #include "base/files/scoped_temp_dir.h" |
11 #include "base/format_macros.h" | 11 #include "base/format_macros.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/message_loop_proxy.h" |
13 #include "base/stringprintf.h" | 14 #include "base/stringprintf.h" |
14 #include "base/time.h" | 15 #include "base/time.h" |
15 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" | 16 #include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_p
rovider.h" |
16 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" | 17 #include "chrome/browser/media_galleries/fileapi/native_media_file_util.h" |
17 #include "content/public/test/test_browser_thread.h" | 18 #include "content/public/test/test_browser_thread.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
19 #include "webkit/browser/fileapi/external_mount_points.h" | 20 #include "webkit/browser/fileapi/external_mount_points.h" |
20 #include "webkit/browser/fileapi/file_system_context.h" | 21 #include "webkit/browser/fileapi/file_system_context.h" |
21 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" | 22 #include "webkit/browser/fileapi/file_system_mount_point_provider.h" |
22 #include "webkit/browser/fileapi/file_system_operation_runner.h" | 23 #include "webkit/browser/fileapi/file_system_operation_runner.h" |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 121 |
121 virtual void SetUp() { | 122 virtual void SetUp() { |
122 ASSERT_TRUE(data_dir_.CreateUniqueTempDir()); | 123 ASSERT_TRUE(data_dir_.CreateUniqueTempDir()); |
123 ASSERT_TRUE(file_util::CreateDirectory(root_path())); | 124 ASSERT_TRUE(file_util::CreateDirectory(root_path())); |
124 | 125 |
125 scoped_refptr<quota::SpecialStoragePolicy> storage_policy = | 126 scoped_refptr<quota::SpecialStoragePolicy> storage_policy = |
126 new quota::MockSpecialStoragePolicy(); | 127 new quota::MockSpecialStoragePolicy(); |
127 | 128 |
128 ScopedVector<fileapi::FileSystemMountPointProvider> additional_providers; | 129 ScopedVector<fileapi::FileSystemMountPointProvider> additional_providers; |
129 additional_providers.push_back(new MediaFileSystemMountPointProvider( | 130 additional_providers.push_back(new MediaFileSystemMountPointProvider( |
130 data_dir_.path())); | 131 data_dir_.path(), base::MessageLoopProxy::current())); |
131 | 132 |
132 file_system_context_ = new fileapi::FileSystemContext( | 133 file_system_context_ = new fileapi::FileSystemContext( |
133 fileapi::FileSystemTaskRunners::CreateMockTaskRunners(), | 134 fileapi::FileSystemTaskRunners::CreateMockTaskRunners(), |
134 fileapi::ExternalMountPoints::CreateRefCounted().get(), | 135 fileapi::ExternalMountPoints::CreateRefCounted().get(), |
135 storage_policy.get(), | 136 storage_policy.get(), |
136 NULL, | 137 NULL, |
137 additional_providers.Pass(), | 138 additional_providers.Pass(), |
138 data_dir_.path(), | 139 data_dir_.path(), |
139 fileapi::CreateAllowFileAccessOptions()); | 140 fileapi::CreateAllowFileAccessOptions()); |
140 | 141 |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 expected_error = base::PLATFORM_FILE_ERROR_SECURITY; | 530 expected_error = base::PLATFORM_FILE_ERROR_SECURITY; |
530 error = base::PLATFORM_FILE_ERROR_FAILED; | 531 error = base::PLATFORM_FILE_ERROR_FAILED; |
531 operation_runner()->CreateSnapshotFile(url, | 532 operation_runner()->CreateSnapshotFile(url, |
532 base::Bind(CreateSnapshotCallback, &error)); | 533 base::Bind(CreateSnapshotCallback, &error)); |
533 base::MessageLoop::current()->RunUntilIdle(); | 534 base::MessageLoop::current()->RunUntilIdle(); |
534 ASSERT_EQ(expected_error, error); | 535 ASSERT_EQ(expected_error, error); |
535 } | 536 } |
536 } | 537 } |
537 | 538 |
538 } // namespace chrome | 539 } // namespace chrome |
OLD | NEW |