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

Unified Diff: components/sync/driver/generic_change_processor.h

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/driver/generic_change_processor.h
diff --git a/components/sync/driver/generic_change_processor.h b/components/sync/driver/generic_change_processor.h
index 33007af68500dc28838ebde5738a6f35e960b845..0819a87af20f650545fd0293de916baecb56b1ca 100644
--- a/components/sync/driver/generic_change_processor.h
+++ b/components/sync/driver/generic_change_processor.h
@@ -52,7 +52,7 @@ class GenericChangeProcessor : public ChangeProcessor,
public base::NonThreadSafe {
public:
// Create a change processor for |type| and connect it to the syncer.
- // |attachment_store| can be NULL which means that datatype will not use sync
+ // |attachment_store| can be null which means that datatype will not use sync
// attachments.
GenericChangeProcessor(
ModelType type,
@@ -172,7 +172,7 @@ class GenericChangeProcessor : public ChangeProcessor,
// and have to keep a local pointer to the user_share.
UserShare* const share_handle_;
- // AttachmentService for datatype. Can be NULL if datatype doesn't use
+ // AttachmentService for datatype. Can be null if datatype doesn't use
// attachments.
std::unique_ptr<AttachmentService> attachment_service_;
@@ -181,7 +181,7 @@ class GenericChangeProcessor : public ChangeProcessor,
// Must be destroyed before attachment_service_ to ensure WeakPtrs are
// invalidated before attachment_service_ is destroyed.
- // Can be NULL if attachment_service_ is NULL;
+ // Can be null if attachment_service_ is null;
std::unique_ptr<base::WeakPtrFactory<AttachmentService>>
attachment_service_weak_ptr_factory_;
AttachmentServiceProxy attachment_service_proxy_;
« no previous file with comments | « components/sync/driver/frontend_data_type_controller.cc ('k') | components/sync/driver/generic_change_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698