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

Unified Diff: athena/screen_lock/screen_lock_manager_base.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
« no previous file with comments | « athena/screen/screen_manager_unittest.cc ('k') | athena/screen_lock/shell/shell_screen_lock_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/screen_lock/screen_lock_manager_base.cc
diff --git a/athena/screen_lock/screen_lock_manager_base.cc b/athena/screen_lock/screen_lock_manager_base.cc
index 80a847b09d135b8ef27831ad5600ab6275e3a6d8..abd221b7e4a5af98d5dd4a3064a8e40a80892470 100644
--- a/athena/screen_lock/screen_lock_manager_base.cc
+++ b/athena/screen_lock/screen_lock_manager_base.cc
@@ -9,7 +9,7 @@
namespace athena {
namespace {
-ScreenLockManager* instance = NULL;
+ScreenLockManager* instance = nullptr;
} // namespace
@@ -20,7 +20,7 @@ ScreenLockManagerBase::ScreenLockManagerBase() {
ScreenLockManagerBase::~ScreenLockManagerBase() {
DCHECK_EQ(instance, this);
- instance = NULL;
+ instance = nullptr;
}
// static
« no previous file with comments | « athena/screen/screen_manager_unittest.cc ('k') | athena/screen_lock/shell/shell_screen_lock_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698