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

Unified Diff: chrome/browser/sync/test/integration/performance/bookmarks_sync_perf_test.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/performance/bookmarks_sync_perf_test.cc
diff --git a/chrome/browser/sync/test/integration/performance/bookmarks_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/bookmarks_sync_perf_test.cc
index 782fd61dd41f8fd766c157b07a017117cc8a0dac..48a623a29f07bd819ff61887f96917d690efc72e 100644
--- a/chrome/browser/sync/test/integration/performance/bookmarks_sync_perf_test.cc
+++ b/chrome/browser/sync/test/integration/performance/bookmarks_sync_perf_test.cc
@@ -54,8 +54,8 @@ class BookmarksSyncPerfTest : public SyncTest {
void BookmarksSyncPerfTest::AddURLs(int profile, int num_urls) {
for (int i = 0; i < num_urls; ++i) {
- ASSERT_TRUE(AddURL(
- profile, 0, NextIndexedURLTitle(), GURL(NextIndexedURL())) != NULL);
+ ASSERT_TRUE(AddURL(profile, 0, NextIndexedURLTitle(),
+ GURL(NextIndexedURL())) != nullptr);
}
}

Powered by Google App Engine
This is Rietveld 408576698