| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/cache_storage/cache_storage.h" | 5 #include "content/browser/cache_storage/cache_storage.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "base/thread_task_runner_handle.h" | 13 #include "base/threading/thread_task_runner_handle.h" |
| 14 #include "content/browser/quota/mock_quota_manager_proxy.h" | 14 #include "content/browser/quota/mock_quota_manager_proxy.h" |
| 15 #include "content/public/test/mock_special_storage_policy.h" | 15 #include "content/public/test/mock_special_storage_policy.h" |
| 16 #include "content/public/test/test_browser_thread_bundle.h" | 16 #include "content/public/test/test_browser_thread_bundle.h" |
| 17 #include "net/url_request/url_request_context_getter.h" | 17 #include "net/url_request/url_request_context_getter.h" |
| 18 #include "storage/browser/quota/quota_manager_proxy.h" | 18 #include "storage/browser/quota/quota_manager_proxy.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 // next time it's opened will require the cache to be created again and | 130 // next time it's opened will require the cache to be created again and |
| 131 // preserved. | 131 // preserved. |
| 132 callback_cache_ = nullptr; | 132 callback_cache_ = nullptr; |
| 133 EXPECT_TRUE(OpenCache("foo")); | 133 EXPECT_TRUE(OpenCache("foo")); |
| 134 EXPECT_TRUE(test_cache_storage_->IsPreservingCache(callback_cache_.get())); | 134 EXPECT_TRUE(test_cache_storage_->IsPreservingCache(callback_cache_.get())); |
| 135 test_cache_storage_->RunPreservedCacheCallback(); | 135 test_cache_storage_->RunPreservedCacheCallback(); |
| 136 EXPECT_FALSE(test_cache_storage_->IsPreservingCache(callback_cache_.get())); | 136 EXPECT_FALSE(test_cache_storage_->IsPreservingCache(callback_cache_.get())); |
| 137 } | 137 } |
| 138 | 138 |
| 139 } // namespace content | 139 } // namespace content |
| OLD | NEW |