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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc

Issue 608133002: [SyncFS] Use nullptr for scoped_ptr initialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nullptr
Patch Set: Created 6 years, 3 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_file_system/drive_backend/sync_worker_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc b/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
index e142bc9a0ec47382a24c784ee428ed2bb066a358..d5c4f6782aa0959349ab33269c0819e305a57ef6 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/sync_worker_unittest.cc
@@ -115,7 +115,7 @@ class SyncWorkerTest : public testing::Test,
scoped_ptr<SyncEngineContext>
sync_engine_context(new SyncEngineContext(
fake_drive_service.Pass(),
- scoped_ptr<drive::DriveUploaderInterface>(),
+ nullptr /* drive_uploader */,
nullptr /* task_logger */,
base::ThreadTaskRunnerHandle::Get() /* ui_task_runner */,
base::ThreadTaskRunnerHandle::Get() /* worker_task_runner */));

Powered by Google App Engine
This is Rietveld 408576698