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

Unified Diff: chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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: chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
diff --git a/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc b/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
index e64e16b74c4ba9178add284d807647f9009dc378..f2df3e40edb1b437d9eb706180971ce71f97639c 100644
--- a/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
+++ b/chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc
@@ -535,7 +535,7 @@ dbus::Response* NativeBackendKWalletTest::KWalletMethodCall(
return nullptr;
EXPECT_EQ("org.kde.KWallet", method_call->GetInterface());
- if (ContainsKey(failing_methods_, method_call->GetMember()))
+ if (base::ContainsKey(failing_methods_, method_call->GetMember()))
return nullptr;
std::unique_ptr<dbus::Response> response;
if (method_call->GetMember() == "isEnabled") {

Powered by Google App Engine
This is Rietveld 408576698