| 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 "chrome/browser/net/quota_policy_channel_id_store.h" | 5 #include "chrome/browser/net/quota_policy_channel_id_store.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| 11 #include "base/files/scoped_temp_dir.h" | 11 #include "base/files/scoped_temp_dir.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_vector.h" | |
| 14 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
| 15 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
| 16 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 17 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
| 18 #include "base/threading/thread_task_runner_handle.h" | 17 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 20 #include "content/public/test/mock_special_storage_policy.h" | 19 #include "content/public/test/mock_special_storage_policy.h" |
| 21 #include "content/public/test/test_browser_thread_bundle.h" | 20 #include "content/public/test/test_browser_thread_bundle.h" |
| 22 #include "net/cookies/cookie_util.h" | 21 #include "net/cookies/cookie_util.h" |
| 23 #include "net/ssl/ssl_client_cert_type.h" | 22 #include "net/ssl/ssl_client_cert_type.h" |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 temp_dir_.GetPath().Append(kTestChannelIDFilename), | 183 temp_dir_.GetPath().Append(kTestChannelIDFilename), |
| 185 base::ThreadTaskRunnerHandle::Get(), NULL); | 184 base::ThreadTaskRunnerHandle::Get(), NULL); |
| 186 | 185 |
| 187 // Reload and check that the nonpersistent.com channel IDs have been removed. | 186 // Reload and check that the nonpersistent.com channel IDs have been removed. |
| 188 Load(&channel_ids); | 187 Load(&channel_ids); |
| 189 ASSERT_EQ(2U, channel_ids.size()); | 188 ASSERT_EQ(2U, channel_ids.size()); |
| 190 for (const auto& id : channel_ids) { | 189 for (const auto& id : channel_ids) { |
| 191 ASSERT_NE("nonpersistent.com", id->server_identifier()); | 190 ASSERT_NE("nonpersistent.com", id->server_identifier()); |
| 192 } | 191 } |
| 193 } | 192 } |
| OLD | NEW |