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

Unified Diff: chrome/browser/password_manager/mock_password_store_service.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/mock_password_store_service.cc
diff --git a/chrome/browser/password_manager/mock_password_store_service.cc b/chrome/browser/password_manager/mock_password_store_service.cc
index b2e9b786d230b2a2f93985c1f6e7eb9b4e3e1edf..f3acb90de835ffbd50e164cdb4cf60364a65d24e 100644
--- a/chrome/browser/password_manager/mock_password_store_service.cc
+++ b/chrome/browser/password_manager/mock_password_store_service.cc
@@ -12,7 +12,7 @@ KeyedService* MockPasswordStoreService::Build(
scoped_refptr<password_manager::PasswordStore> store(
new password_manager::MockPasswordStore);
if (!store.get() || !store->Init(syncer::SyncableService::StartSyncFlare()))
- return NULL;
+ return nullptr;
return new MockPasswordStoreService(store);
}

Powered by Google App Engine
This is Rietveld 408576698