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

Unified Diff: chrome/browser/sync/test/integration/sync_auth_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/sync_auth_test.cc
diff --git a/chrome/browser/sync/test/integration/sync_auth_test.cc b/chrome/browser/sync/test/integration/sync_auth_test.cc
index 9ad5d8188ec8253decf575cfdf36197ce2480802..1e7391e143c512f63acae2e8f917eb2fc840fd06 100644
--- a/chrome/browser/sync/test/integration/sync_auth_test.cc
+++ b/chrome/browser/sync/test/integration/sync_auth_test.cc
@@ -81,7 +81,7 @@ class SyncAuthTest : public SyncTest {
int bookmark_index = GetNextBookmarkIndex();
std::string title = base::StringPrintf("Bookmark %d", bookmark_index);
GURL url = GURL(base::StringPrintf("http://www.foo%d.com", bookmark_index));
- EXPECT_TRUE(AddURL(0, title, url) != NULL);
+ EXPECT_TRUE(AddURL(0, title, url) != nullptr);
// Run until the bookmark is committed or an auth error is encountered.
TestForAuthError(GetSyncService(0)).Wait();

Powered by Google App Engine
This is Rietveld 408576698