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

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

Powered by Google App Engine
This is Rietveld 408576698