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

Unified Diff: components/password_manager/core/browser/affiliation_service_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: components/password_manager/core/browser/affiliation_service_unittest.cc
diff --git a/components/password_manager/core/browser/affiliation_service_unittest.cc b/components/password_manager/core/browser/affiliation_service_unittest.cc
index 18519f7beed9ebd21532be2aef09a4571dcfb8e1..6774b955f1db24d6a1388ad4b9cc9b9ec8bea2f5 100644
--- a/components/password_manager/core/browser/affiliation_service_unittest.cc
+++ b/components/password_manager/core/browser/affiliation_service_unittest.cc
@@ -70,7 +70,7 @@ class AffiliationServiceTest : public testing::Test {
base::FilePath database_path;
ASSERT_TRUE(CreateTemporaryFile(&database_path));
service_.reset(new AffiliationService(background_task_runner()));
- service_->Initialize(NULL, database_path);
+ service_->Initialize(nullptr, database_path);
// Note: the background task runner is purposely not pumped here, so that
// the tests also verify that the service can be used synchronously right
// away after having been constructed.

Powered by Google App Engine
This is Rietveld 408576698