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

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

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site Created 4 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 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 7823ba6d70bb2bfb675fed605d4b7c7be9f5893b..c268251439e8000e4f6d070eb5f36f400fd89ce8 100644
--- a/components/password_manager/core/browser/password_store_unittest.cc
+++ b/components/password_manager/core/browser/password_store_unittest.cc
@@ -98,7 +98,7 @@ class PasswordStoreTest : public testing::Test {
};
ACTION(STLDeleteElements0) {
- STLDeleteContainerPointers(arg0.begin(), arg0.end());
+ base::STLDeleteContainerPointers(arg0.begin(), arg0.end());
}
TEST_F(PasswordStoreTest, IgnoreOldWwwGoogleLogins) {

Powered by Google App Engine
This is Rietveld 408576698