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

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

Issue 951883002: [Password Manager Cleanup] Replaces NULL -> nullptr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Vaclav's comments. Created 5 years, 10 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/password_store_x_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_x_unittest.cc b/chrome/browser/password_manager/password_store_x_unittest.cc
index 0e9e7669f66d1261cdd20d898fa9ecb3ae10328f..737353c320e838aadbd6c815d944910fc7a3474e 100644
--- a/chrome/browser/password_manager/password_store_x_unittest.cc
+++ b/chrome/browser/password_manager/password_store_x_unittest.cc
@@ -232,8 +232,8 @@ void InitExpectedForms(bool autofillable,
L"submit_element",
L"username_element",
L"password_element",
- autofillable ? L"username_value" : NULL,
- autofillable ? L"password_value" : NULL,
+ autofillable ? L"username_value" : nullptr,
+ autofillable ? L"password_value" : nullptr,
autofillable,
false,
static_cast<double>(i + 1)};
@@ -273,7 +273,7 @@ class PasswordStoreXTest : public testing::TestWithParam<BackendType> {
case WORKING_BACKEND:
return new MockBackend();
default:
- return NULL;
+ return nullptr;
}
}
« no previous file with comments | « chrome/browser/password_manager/password_store_x.cc ('k') | chrome/browser/password_manager/test_password_store_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698