| 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" |
| 11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
| 13 #include "base/threading/thread_task_runner_handle.h" | 13 #include "base/threading/thread_task_runner_handle.h" |
| 14 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
| 15 #include "content/public/test/mock_special_storage_policy.h" | |
| 16 #include "content/public/test/test_browser_thread_bundle.h" | 15 #include "content/public/test/test_browser_thread_bundle.h" |
| 17 #include "content/public/test/test_file_system_context.h" | |
| 18 #include "content/public/test/test_file_system_options.h" | |
| 19 #include "storage/browser/fileapi/external_mount_points.h" | 16 #include "storage/browser/fileapi/external_mount_points.h" |
| 20 #include "storage/browser/fileapi/file_system_backend.h" | 17 #include "storage/browser/fileapi/file_system_backend.h" |
| 21 #include "storage/browser/fileapi/file_system_context.h" | 18 #include "storage/browser/fileapi/file_system_context.h" |
| 22 #include "storage/browser/fileapi/file_system_operation_runner.h" | 19 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| 20 #include "storage/browser/test/mock_special_storage_policy.h" |
| 21 #include "storage/browser/test/test_file_system_context.h" |
| 22 #include "storage/browser/test/test_file_system_options.h" |
| 23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
| 24 | 24 |
| 25 using storage::FileSystemContext; | 25 using storage::FileSystemContext; |
| 26 using storage::FileSystemOperationRunner; | 26 using storage::FileSystemOperationRunner; |
| 27 using storage::FileSystemType; | 27 using storage::FileSystemType; |
| 28 using storage::FileSystemURL; | 28 using storage::FileSystemURL; |
| 29 | 29 |
| 30 namespace content { | 30 namespace content { |
| 31 | 31 |
| 32 namespace { | 32 namespace { |
| (...skipping 208 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 |