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

Unified Diff: components/sync/test/fake_server/bookmark_entity_builder.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
Index: components/sync/test/fake_server/bookmark_entity_builder.cc
diff --git a/components/sync/test/fake_server/bookmark_entity_builder.cc b/components/sync/test/fake_server/bookmark_entity_builder.cc
index f4ea23de19fa7a05263615d8f8c4d05d7a7ccfef..806d1dfec7f3bb916e24e4a85cce6f87c3c5223b 100644
--- a/components/sync/test/fake_server/bookmark_entity_builder.cc
+++ b/components/sync/test/fake_server/bookmark_entity_builder.cc
@@ -47,7 +47,7 @@ void BookmarkEntityBuilder::SetParentId(const std::string& parent_id) {
std::unique_ptr<FakeServerEntity> BookmarkEntityBuilder::BuildBookmark(
const GURL& url) {
if (!url.is_valid()) {
- return base::WrapUnique<FakeServerEntity>(NULL);
+ return base::WrapUnique<FakeServerEntity>(nullptr);
}
sync_pb::EntitySpecifics entity_specifics = CreateBaseEntitySpecifics();
« no previous file with comments | « components/sync/test/fake_server/android/fake_server_helper_android.cc ('k') | components/sync/test/fake_server/fake_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698