Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: chrome/browser/net/quota_policy_channel_id_store_unittest.cc

Issue 2090463002: Move net/base/test_data_directory.[cc,h] to net/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/net/proxy_browsertest.cc ('k') | chrome/browser/net/websocket_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_vector.h" 14 #include "base/memory/scoped_vector.h"
15 #include "base/message_loop/message_loop.h" 15 #include "base/message_loop/message_loop.h"
16 #include "base/run_loop.h" 16 #include "base/run_loop.h"
17 #include "base/single_thread_task_runner.h" 17 #include "base/single_thread_task_runner.h"
18 #include "base/stl_util.h" 18 #include "base/stl_util.h"
19 #include "base/threading/thread_task_runner_handle.h" 19 #include "base/threading/thread_task_runner_handle.h"
20 #include "base/time/time.h" 20 #include "base/time/time.h"
21 #include "content/public/test/mock_special_storage_policy.h" 21 #include "content/public/test/mock_special_storage_policy.h"
22 #include "content/public/test/test_browser_thread_bundle.h" 22 #include "content/public/test/test_browser_thread_bundle.h"
23 #include "net/base/test_data_directory.h"
24 #include "net/cookies/cookie_util.h" 23 #include "net/cookies/cookie_util.h"
25 #include "net/ssl/ssl_client_cert_type.h" 24 #include "net/ssl/ssl_client_cert_type.h"
26 #include "net/test/cert_test_util.h" 25 #include "net/test/cert_test_util.h"
27 #include "net/test/channel_id_test_util.h" 26 #include "net/test/channel_id_test_util.h"
27 #include "net/test/test_data_directory.h"
28 #include "sql/statement.h" 28 #include "sql/statement.h"
29 #include "testing/gtest/include/gtest/gtest.h" 29 #include "testing/gtest/include/gtest/gtest.h"
30 30
31 const base::FilePath::CharType kTestChannelIDFilename[] = 31 const base::FilePath::CharType kTestChannelIDFilename[] =
32 FILE_PATH_LITERAL("ChannelID"); 32 FILE_PATH_LITERAL("ChannelID");
33 33
34 class QuotaPolicyChannelIDStoreTest : public testing::Test { 34 class QuotaPolicyChannelIDStoreTest : public testing::Test {
35 public: 35 public:
36 void Load(std::vector<std::unique_ptr<net::DefaultChannelIDStore::ChannelID>>* 36 void Load(std::vector<std::unique_ptr<net::DefaultChannelIDStore::ChannelID>>*
37 channel_ids) { 37 channel_ids) {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 base::ThreadTaskRunnerHandle::Get(), 192 base::ThreadTaskRunnerHandle::Get(),
193 NULL); 193 NULL);
194 194
195 // Reload and check that the nonpersistent.com channel IDs have been removed. 195 // Reload and check that the nonpersistent.com channel IDs have been removed.
196 Load(&channel_ids); 196 Load(&channel_ids);
197 ASSERT_EQ(2U, channel_ids.size()); 197 ASSERT_EQ(2U, channel_ids.size());
198 for (const auto& id : channel_ids) { 198 for (const auto& id : channel_ids) {
199 ASSERT_NE("nonpersistent.com", id->server_identifier()); 199 ASSERT_NE("nonpersistent.com", id->server_identifier());
200 } 200 }
201 } 201 }
OLDNEW
« no previous file with comments | « chrome/browser/net/proxy_browsertest.cc ('k') | chrome/browser/net/websocket_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698