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

Unified Diff: components/sync/driver/non_ui_data_type_controller.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/driver/non_ui_data_type_controller.cc
diff --git a/components/sync/driver/non_ui_data_type_controller.cc b/components/sync/driver/non_ui_data_type_controller.cc
index 4f0be0fb1ed21f9298e802f0deef3b2d9e23636d..ede715594d5f409d7fd2f8846e64c5c1e9645204 100644
--- a/components/sync/driver/non_ui_data_type_controller.cc
+++ b/components/sync/driver/non_ui_data_type_controller.cc
@@ -44,7 +44,7 @@ void NonUIDataTypeController::LoadModels(
state_ = MODEL_STARTING;
// Since we can't be called multiple times before Stop() is called,
- // |shared_change_processor_| must be NULL here.
+ // |shared_change_processor_| must be null here.
DCHECK(!shared_change_processor_.get());
shared_change_processor_ = CreateSharedChangeProcessor();
DCHECK(shared_change_processor_.get());
@@ -215,7 +215,7 @@ ChangeProcessor* NonUIDataTypeController::GetChangeProcessor() const {
void NonUIDataTypeController::DisconnectSharedChangeProcessor() {
DCHECK(CalledOnValidThread());
- // |shared_change_processor_| can already be NULL if Stop() is
+ // |shared_change_processor_| can already be null if Stop() is
// called after StartDone(_, DISABLED, _).
if (shared_change_processor_.get()) {
shared_change_processor_->Disconnect();
« no previous file with comments | « components/sync/driver/non_ui_data_type_controller.h ('k') | components/sync/driver/shared_change_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698