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 <utility> | 5 #include <utility> |
6 | 6 |
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/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 content::TestBrowserThreadBundle::REAL_FILE_THREAD | | 187 content::TestBrowserThreadBundle::REAL_FILE_THREAD | |
188 content::TestBrowserThreadBundle::IO_MAINLOOP) {} | 188 content::TestBrowserThreadBundle::IO_MAINLOOP) {} |
189 | 189 |
190 void SetUp() override { | 190 void SetUp() override { |
191 ASSERT_TRUE(base_.CreateUniqueTempDir()); | 191 ASSERT_TRUE(base_.CreateUniqueTempDir()); |
192 | 192 |
193 base::FilePath base_dir = base_.path(); | 193 base::FilePath base_dir = base_.path(); |
194 ScopedVector<storage::FileSystemBackend> additional_providers; | 194 ScopedVector<storage::FileSystemBackend> additional_providers; |
195 file_system_context_ = new FileSystemContext( | 195 file_system_context_ = new FileSystemContext( |
196 base::ThreadTaskRunnerHandle::Get().get(), | 196 base::ThreadTaskRunnerHandle::Get().get(), |
197 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE).get(), | 197 BrowserThread::GetTaskRunnerForThread(BrowserThread::FILE).get(), |
198 storage::ExternalMountPoints::CreateRefCounted().get(), | 198 storage::ExternalMountPoints::CreateRefCounted().get(), |
199 make_scoped_refptr(new MockSpecialStoragePolicy()).get(), nullptr, | 199 make_scoped_refptr(new MockSpecialStoragePolicy()).get(), nullptr, |
200 std::move(additional_providers), | 200 std::move(additional_providers), |
201 std::vector<storage::URLRequestAutoMountHandler>(), base_dir, | 201 std::vector<storage::URLRequestAutoMountHandler>(), base_dir, |
202 CreateAllowFileAccessOptions()); | 202 CreateAllowFileAccessOptions()); |
203 | 203 |
204 // Disallow IO on the main loop. | 204 // Disallow IO on the main loop. |
205 base::ThreadRestrictions::SetIOAllowed(false); | 205 base::ThreadRestrictions::SetIOAllowed(false); |
206 } | 206 } |
207 | 207 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 base::RunLoop run_loop; | 241 base::RunLoop run_loop; |
242 BrowserThread::PostTaskAndReply( | 242 BrowserThread::PostTaskAndReply( |
243 BrowserThread::FILE, FROM_HERE, | 243 BrowserThread::FILE, FROM_HERE, |
244 base::Bind(&base::DoNothing), | 244 base::Bind(&base::DoNothing), |
245 run_loop.QuitClosure()); | 245 run_loop.QuitClosure()); |
246 run_loop.Run(); | 246 run_loop.Run(); |
247 // This should finish without thread assertion failure on debug build. | 247 // This should finish without thread assertion failure on debug build. |
248 } | 248 } |
249 | 249 |
250 } // namespace content | 250 } // namespace content |
OLD | NEW |