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

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

Issue 59193003: [SyncFS] Add RemoteToLocalSyncer skeleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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/local_to_remote_syncer.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.cc b/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.cc
index 5ecdeb603939e45764843bb0513c76db04a94ccd..c392ba2f5ef61767f470e15232c23de64c68315b 100644
--- a/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.cc
+++ b/chrome/browser/sync_file_system/drive_backend/local_to_remote_syncer.cc
@@ -10,7 +10,9 @@
namespace sync_file_system {
namespace drive_backend {
-LocalToRemoteSyncer::LocalToRemoteSyncer() {
+LocalToRemoteSyncer::LocalToRemoteSyncer(SyncEngineContext* sync_context)
+ : sync_context_(sync_context),
+ weak_ptr_factory_(this) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698