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

Side by Side Diff: content/browser/net/quota_policy_cookie_store_unittest.cc

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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
OLDNEW
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/net/quota_policy_cookie_store.h" 5 #include "content/browser/net/quota_policy_cookie_store.h"
6 #include "base/bind.h" 6 #include "base/bind.h"
7 #include "base/files/file_util.h" 7 #include "base/files/file_util.h"
8 #include "base/files/scoped_temp_dir.h" 8 #include "base/files/scoped_temp_dir.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "base/sequenced_task_runner.h"
11 #include "base/synchronization/waitable_event.h" 12 #include "base/synchronization/waitable_event.h"
12 #include "base/test/sequenced_worker_pool_owner.h" 13 #include "base/test/sequenced_worker_pool_owner.h"
13 #include "base/threading/sequenced_worker_pool.h" 14 #include "base/threading/sequenced_worker_pool.h"
14 #include "base/time/time.h" 15 #include "base/time/time.h"
15 #include "content/public/test/test_browser_thread_bundle.h" 16 #include "content/public/test/test_browser_thread_bundle.h"
16 #include "net/cookies/cookie_util.h" 17 #include "net/cookies/cookie_util.h"
17 #include "net/ssl/ssl_client_cert_type.h" 18 #include "net/ssl/ssl_client_cert_type.h"
18 #include "net/test/cert_test_util.h" 19 #include "net/test/cert_test_util.h"
19 #include "net/test/test_data_directory.h" 20 #include "net/test/test_data_directory.h"
20 #include "sql/statement.h" 21 #include "sql/statement.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 // Reload and test for persistence. 281 // Reload and test for persistence.
281 cookies.clear(); 282 cookies.clear();
282 CreateAndLoad(storage_policy.get(), &cookies); 283 CreateAndLoad(storage_policy.get(), &cookies);
283 EXPECT_EQ(0U, cookies.size()); 284 EXPECT_EQ(0U, cookies.size());
284 285
285 cookies.clear(); 286 cookies.clear();
286 } 287 }
287 288
288 } // namespace 289 } // namespace
289 } // namespace content 290 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698