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

Unified Diff: extensions/browser/api/storage/storage_frontend.cc

Issue 598173003: Run clang-modernize -use-nullptr over src/extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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: extensions/browser/api/storage/storage_frontend.cc
diff --git a/extensions/browser/api/storage/storage_frontend.cc b/extensions/browser/api/storage/storage_frontend.cc
index c9a6ac2f4b8ef405b608f61ea2136f73f7fd640e..2db3fe9868531b310e15bd7dfb8651f19a1c1451 100644
--- a/extensions/browser/api/storage/storage_frontend.cc
+++ b/extensions/browser/api/storage/storage_frontend.cc
@@ -115,7 +115,7 @@ ValueStoreCache* StorageFrontend::GetValueStoreCache(
CacheMap::const_iterator it = caches_.find(settings_namespace);
if (it != caches_.end())
return it->second;
- return NULL;
+ return nullptr;
}
bool StorageFrontend::IsStorageEnabled(

Powered by Google App Engine
This is Rietveld 408576698