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

Unified Diff: components/password_manager/core/browser/password_store_default_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_default_unittest.cc
diff --git a/components/password_manager/core/browser/password_store_default_unittest.cc b/components/password_manager/core/browser/password_store_default_unittest.cc
index 566e43f5b0691d52c788bf6df538d202e1e98e46..d4d0a77d1d33d0cefda8e67db4e8619f7d27aeaf 100644
--- a/components/password_manager/core/browser/password_store_default_unittest.cc
+++ b/components/password_manager/core/browser/password_store_default_unittest.cc
@@ -156,7 +156,7 @@ INSTANTIATE_TYPED_TEST_CASE_P(Default,
PasswordStoreDefaultTestDelegate);
ACTION(STLDeleteElements0) {
- STLDeleteContainerPointers(arg0.begin(), arg0.end());
+ base::STLDeleteContainerPointers(arg0.begin(), arg0.end());
}
TEST(PasswordStoreDefaultTest, NonASCIIData) {

Powered by Google App Engine
This is Rietveld 408576698