| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stdint.h> |
| 6 |
| 5 #include <stack> | 7 #include <stack> |
| 6 | 8 |
| 7 #include "base/bind.h" | 9 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 9 #include "base/callback.h" | 11 #include "base/callback.h" |
| 10 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 13 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/location.h" | 14 #include "base/location.h" |
| 15 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/single_thread_task_runner.h" | 17 #include "base/single_thread_task_runner.h" |
| 15 #include "base/synchronization/waitable_event.h" | 18 #include "base/synchronization/waitable_event.h" |
| 16 #include "base/thread_task_runner_handle.h" | 19 #include "base/thread_task_runner_handle.h" |
| 17 #include "base/threading/thread.h" | 20 #include "base/threading/thread.h" |
| 18 #include "content/browser/appcache/appcache.h" | 21 #include "content/browser/appcache/appcache.h" |
| 19 #include "content/browser/appcache/appcache_backend_impl.h" | 22 #include "content/browser/appcache/appcache_backend_impl.h" |
| 20 #include "content/browser/appcache/appcache_database.h" | 23 #include "content/browser/appcache/appcache_database.h" |
| 21 #include "content/browser/appcache/appcache_entry.h" | 24 #include "content/browser/appcache/appcache_entry.h" |
| 22 #include "content/browser/appcache/appcache_group.h" | 25 #include "content/browser/appcache/appcache_group.h" |
| (...skipping 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2021 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2); | 2024 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2); |
| 2022 } | 2025 } |
| 2023 | 2026 |
| 2024 TEST_F(AppCacheStorageImplTest, Reinitialize3) { | 2027 TEST_F(AppCacheStorageImplTest, Reinitialize3) { |
| 2025 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3); | 2028 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3); |
| 2026 } | 2029 } |
| 2027 | 2030 |
| 2028 // That's all folks! | 2031 // That's all folks! |
| 2029 | 2032 |
| 2030 } // namespace content | 2033 } // namespace content |
| OLD | NEW |