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

Unified Diff: components/password_manager/core/browser/password_store_unittest.cc

Issue 2456163002: Remove stl_util's STLDeleteContainerPointers. (Closed)
Patch Set: last few Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: components/password_manager/core/browser/password_store_unittest.cc
diff --git a/components/password_manager/core/browser/password_store_unittest.cc b/components/password_manager/core/browser/password_store_unittest.cc
index daa27d4c31b0f896ec0e8efc664e506eb90b2799..dfa3382c51d64fff26d2ebffb066f0ecaa2ae994 100644
--- a/components/password_manager/core/browser/password_store_unittest.cc
+++ b/components/password_manager/core/browser/password_store_unittest.cc
@@ -16,7 +16,6 @@
#include "base/macros.h"
#include "base/memory/ptr_util.h"
#include "base/run_loop.h"
-#include "base/stl_util.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/waitable_event.h"
@@ -98,10 +97,6 @@ class PasswordStoreTest : public testing::Test {
base::ScopedTempDir temp_dir_;
};
-ACTION(STLDeleteElements0) {
- base::STLDeleteContainerPointers(arg0.begin(), arg0.end());
-}
-
TEST_F(PasswordStoreTest, IgnoreOldWwwGoogleLogins) {
scoped_refptr<PasswordStoreDefault> store(new PasswordStoreDefault(
base::ThreadTaskRunnerHandle::Get(), base::ThreadTaskRunnerHandle::Get(),

Powered by Google App Engine
This is Rietveld 408576698