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

Unified Diff: components/sync/syncable/entry_kernel_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/entry_kernel.cc ('k') | components/sync/syncable/model_neutral_mutable_entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/syncable/entry_kernel_unittest.cc
diff --git a/components/sync/syncable/entry_kernel_unittest.cc b/components/sync/syncable/entry_kernel_unittest.cc
index 35a80291df17f7b29e660f2c243c125c9ef96f56..fa2aacb74b10677b92b9df281562fa5a22ed4ef8 100644
--- a/components/sync/syncable/entry_kernel_unittest.cc
+++ b/components/sync/syncable/entry_kernel_unittest.cc
@@ -14,7 +14,7 @@ class EntryKernelTest : public testing::Test {};
TEST_F(EntryKernelTest, ToValue) {
EntryKernel kernel;
- std::unique_ptr<base::DictionaryValue> value(kernel.ToValue(NULL));
+ std::unique_ptr<base::DictionaryValue> value(kernel.ToValue(nullptr));
if (value) {
// Not much to check without repeating the ToValue() code.
EXPECT_TRUE(value->HasKey("isDirty"));
« no previous file with comments | « components/sync/syncable/entry_kernel.cc ('k') | components/sync/syncable/model_neutral_mutable_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698