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

Unified Diff: athena/extensions/extensions_delegate.cc

Issue 653563004: NULL -> nullptr under athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 2 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: athena/extensions/extensions_delegate.cc
diff --git a/athena/extensions/extensions_delegate.cc b/athena/extensions/extensions_delegate.cc
index 97bd0dda01f2df0bdc674b8d6406aa2315fb46af..a5c39b91628c85661bed7eea662aaae7e471c6f8 100644
--- a/athena/extensions/extensions_delegate.cc
+++ b/athena/extensions/extensions_delegate.cc
@@ -9,7 +9,7 @@
namespace athena {
namespace {
-ExtensionsDelegate* instance = NULL;
+ExtensionsDelegate* instance = nullptr;
} // namespace
@@ -20,7 +20,7 @@ ExtensionsDelegate::ExtensionsDelegate() {
ExtensionsDelegate::~ExtensionsDelegate() {
DCHECK(instance);
- instance = NULL;
+ instance = nullptr;
}
// static
« no previous file with comments | « athena/extensions/extension_app_model_builder.cc ('k') | athena/extensions/shell/athena_shell_app_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698