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

Unified Diff: chrome/browser/sync_file_system/file_change.cc

Issue 610223002: [SyncFS] Use nullptr instead of NULL (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: chrome/browser/sync_file_system/file_change.cc
diff --git a/chrome/browser/sync_file_system/file_change.cc b/chrome/browser/sync_file_system/file_change.cc
index 7e381bbf36430817ded105e40ee1bf04382a53d7..e63d9a66cdc3cfa38f1fe80da314f4ffdea5d141 100644
--- a/chrome/browser/sync_file_system/file_change.cc
+++ b/chrome/browser/sync_file_system/file_change.cc
@@ -17,7 +17,7 @@ FileChange::FileChange(
file_type_(file_type) {}
std::string FileChange::DebugString() const {
- const char* change_string = NULL;
+ const char* change_string = nullptr;
switch (change()) {
case FILE_CHANGE_ADD_OR_UPDATE:
change_string = "ADD_OR_UPDATE";

Powered by Google App Engine
This is Rietveld 408576698