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

Unified Diff: components/sync/driver/frontend_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/frontend_data_type_controller.cc
diff --git a/components/sync/driver/frontend_data_type_controller.cc b/components/sync/driver/frontend_data_type_controller.cc
index 8b24a6f5d935da23a3b119a235112a02302ceb9b..56da9101769b7a571efa09cae62fd4f3bd4db1c3 100644
--- a/components/sync/driver/frontend_data_type_controller.cc
+++ b/components/sync/driver/frontend_data_type_controller.cc
@@ -100,7 +100,7 @@ void FrontendDataTypeController::Stop() {
error = model_associator()->DisassociateModels();
}
- set_model_associator(NULL);
+ set_model_associator(nullptr);
change_processor_.reset();
state_ = NOT_RUNNING;
@@ -185,7 +185,7 @@ void FrontendDataTypeController::CleanUpState() {
void FrontendDataTypeController::CleanUp() {
CleanUpState();
- set_model_associator(NULL);
+ set_model_associator(nullptr);
change_processor_.reset();
}
« no previous file with comments | « components/sync/driver/fake_generic_change_processor.cc ('k') | components/sync/driver/generic_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698