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

Unified Diff: components/password_manager/core/browser/affiliation_backend_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_backend_unittest.cc
diff --git a/components/password_manager/core/browser/affiliation_backend_unittest.cc b/components/password_manager/core/browser/affiliation_backend_unittest.cc
index 009cd9a3f1599b083b57a402e022d7669bbc2285..a291da5cb8ba774787a5248abd72295579d35a35 100644
--- a/components/password_manager/core/browser/affiliation_backend_unittest.cc
+++ b/components/password_manager/core/browser/affiliation_backend_unittest.cc
@@ -124,7 +124,7 @@ class AffiliationBackendTest : public testing::Test {
// testing::Test:
void SetUp() override {
clock_->Advance(base::TimeDelta::FromMicroseconds(1));
- backend_.reset(new AffiliationBackend(NULL, make_scoped_ptr(clock_)));
+ backend_.reset(new AffiliationBackend(nullptr, make_scoped_ptr(clock_)));
base::FilePath database_path;
ASSERT_TRUE(CreateTemporaryFile(&database_path));

Powered by Google App Engine
This is Rietveld 408576698