| 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 "content/browser/appcache/appcache_storage_impl.h" | 5 #include "content/browser/appcache/appcache_storage_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <stack> | 10 #include <stack> |
| 11 #include <utility> | 11 #include <utility> |
| 12 | 12 |
| 13 #include "base/bind.h" | 13 #include "base/bind.h" |
| 14 #include "base/bind_helpers.h" | 14 #include "base/bind_helpers.h" |
| 15 #include "base/callback.h" | 15 #include "base/callback.h" |
| 16 #include "base/files/file_util.h" | 16 #include "base/files/file_util.h" |
| 17 #include "base/files/scoped_temp_dir.h" | 17 #include "base/files/scoped_temp_dir.h" |
| 18 #include "base/location.h" | 18 #include "base/location.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "base/memory/ptr_util.h" | 20 #include "base/memory/ptr_util.h" |
| 21 #include "base/message_loop/message_loop.h" |
| 21 #include "base/single_thread_task_runner.h" | 22 #include "base/single_thread_task_runner.h" |
| 22 #include "base/synchronization/waitable_event.h" | 23 #include "base/synchronization/waitable_event.h" |
| 23 #include "base/threading/thread.h" | 24 #include "base/threading/thread.h" |
| 24 #include "base/threading/thread_task_runner_handle.h" | 25 #include "base/threading/thread_task_runner_handle.h" |
| 25 #include "content/browser/appcache/appcache.h" | 26 #include "content/browser/appcache/appcache.h" |
| 26 #include "content/browser/appcache/appcache_backend_impl.h" | 27 #include "content/browser/appcache/appcache_backend_impl.h" |
| 27 #include "content/browser/appcache/appcache_database.h" | 28 #include "content/browser/appcache/appcache_database.h" |
| 28 #include "content/browser/appcache/appcache_entry.h" | 29 #include "content/browser/appcache/appcache_entry.h" |
| 29 #include "content/browser/appcache/appcache_group.h" | 30 #include "content/browser/appcache/appcache_group.h" |
| 30 #include "content/browser/appcache/appcache_host.h" | 31 #include "content/browser/appcache/appcache_host.h" |
| (...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2026 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2); | 2027 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2); |
| 2027 } | 2028 } |
| 2028 | 2029 |
| 2029 TEST_F(AppCacheStorageImplTest, Reinitialize3) { | 2030 TEST_F(AppCacheStorageImplTest, Reinitialize3) { |
| 2030 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3); | 2031 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3); |
| 2031 } | 2032 } |
| 2032 | 2033 |
| 2033 // That's all folks! | 2034 // That's all folks! |
| 2034 | 2035 |
| 2035 } // namespace content | 2036 } // namespace content |
| OLD | NEW |