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

Unified Diff: chrome/browser/sync/test/integration/migration_watcher.cc

Issue 2461463002: [Sync] Replacing NULL with nullptr/null throughout sync code. (Closed)
Patch Set: Reverted PROFILE_nullptr mistake. 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: chrome/browser/sync/test/integration/migration_watcher.cc
diff --git a/chrome/browser/sync/test/integration/migration_watcher.cc b/chrome/browser/sync/test/integration/migration_watcher.cc
index ab27c4e8169cd0ed3502c64aaf74d79a44cca2bc..17cae9d4be8410e95bc96d25429b28f1075a1def 100644
--- a/chrome/browser/sync/test/integration/migration_watcher.cc
+++ b/chrome/browser/sync/test/integration/migration_watcher.cc
@@ -9,7 +9,7 @@
#include "components/browser_sync/profile_sync_service.h"
MigrationWatcher::MigrationWatcher(ProfileSyncServiceHarness* harness)
- : harness_(harness), migration_waiter_(NULL) {
+ : harness_(harness), migration_waiter_(nullptr) {
syncer::BackendMigrator* migrator =
harness_->service()->GetBackendMigratorForTest();
// PSS must have a migrator after sync is setup and initial data type
@@ -62,5 +62,5 @@ void MigrationWatcher::set_migration_waiter(MigrationWaiter* waiter) {
void MigrationWatcher::clear_migration_waiter() {
DCHECK(migration_waiter_);
- migration_waiter_ = NULL;
+ migration_waiter_ = nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698