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

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

Issue 1307643003: IWYU for base/memory/scoped_vector.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/files/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/files/scoped_temp_dir.h" 7 #include "base/files/scoped_temp_dir.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_vector.h"
10 #include "base/run_loop.h" 9 #include "base/run_loop.h"
11 #include "base/stl_util.h" 10 #include "base/stl_util.h"
12 #include "base/synchronization/waitable_event.h" 11 #include "base/synchronization/waitable_event.h"
13 #include "base/test/sequenced_worker_pool_owner.h" 12 #include "base/test/sequenced_worker_pool_owner.h"
14 #include "base/threading/sequenced_worker_pool.h" 13 #include "base/threading/sequenced_worker_pool.h"
15 #include "base/time/time.h" 14 #include "base/time/time.h"
16 #include "content/browser/net/quota_policy_cookie_store.h" 15 #include "content/browser/net/quota_policy_cookie_store.h"
17 #include "content/public/test/mock_special_storage_policy.h" 16 #include "content/public/test/mock_special_storage_policy.h"
18 #include "content/public/test/test_browser_thread_bundle.h" 17 #include "content/public/test/test_browser_thread_bundle.h"
19 #include "net/base/test_data_directory.h" 18 #include "net/base/test_data_directory.h"
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 // Reload and test for persistence. 282 // Reload and test for persistence.
284 STLDeleteElements(&cookies); 283 STLDeleteElements(&cookies);
285 CreateAndLoad(storage_policy.get(), &cookies); 284 CreateAndLoad(storage_policy.get(), &cookies);
286 EXPECT_EQ(0U, cookies.size()); 285 EXPECT_EQ(0U, cookies.size());
287 286
288 STLDeleteElements(&cookies); 287 STLDeleteElements(&cookies);
289 } 288 }
290 289
291 } // namespace 290 } // namespace
292 } // namespace content 291 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698