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

Unified Diff: components/sync/syncable/directory_backing_store_unittest.cc

Issue 2427803002: [Sync] Replacing NULL with nullptr in code and null in comments for components/sync/ (Closed)
Patch Set: Fixing start of sentence capitlization. Created 4 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 | « components/sync/syncable/directory_backing_store.cc ('k') | components/sync/syncable/directory_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/directory_backing_store_unittest.cc
diff --git a/components/sync/syncable/directory_backing_store_unittest.cc b/components/sync/syncable/directory_backing_store_unittest.cc
index a08ceedb98d7d0fa15a751ed48ec99677a6716e8..2d7865362f3f5a1b1986ea7caa51e6d0848e5796 100644
--- a/components/sync/syncable/directory_backing_store_unittest.cc
+++ b/components/sync/syncable/directory_backing_store_unittest.cc
@@ -41,7 +41,7 @@ std::unique_ptr<EntryKernel> CreateEntry(int id, const std::string& id_suffix) {
std::string id_string = base::Int64ToString(id) + id_suffix;
entry->put(ID, Id::CreateFromClientString(id_string));
entry->put(META_HANDLE, id);
- entry->mark_dirty(NULL);
+ entry->mark_dirty(nullptr);
return entry;
}
« no previous file with comments | « components/sync/syncable/directory_backing_store.cc ('k') | components/sync/syncable/directory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698