|
@@ -114,7 +114,8 @@ public class SynchronizeFileOperation extends SyncOperation {
|
|
User user,
|
|
User user,
|
|
boolean syncFileContents,
|
|
boolean syncFileContents,
|
|
Context context,
|
|
Context context,
|
|
- FileDataStorageManager storageManager) {
|
|
|
|
|
|
+ FileDataStorageManager storageManager,
|
|
|
|
+ boolean syncForInternalTwoWaySyncWorker) {
|
|
super(storageManager);
|
|
super(storageManager);
|
|
|
|
|
|
mLocalFile = localFile;
|
|
mLocalFile = localFile;
|
|
@@ -134,6 +135,7 @@ public class SynchronizeFileOperation extends SyncOperation {
|
|
mSyncFileContents = syncFileContents;
|
|
mSyncFileContents = syncFileContents;
|
|
mContext = context;
|
|
mContext = context;
|
|
mAllowUploads = true;
|
|
mAllowUploads = true;
|
|
|
|
+ this.syncForInternalTwoWaySyncWorker = syncForInternalTwoWaySyncWorker;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -163,9 +165,9 @@ public class SynchronizeFileOperation extends SyncOperation {
|
|
boolean syncFileContents,
|
|
boolean syncFileContents,
|
|
boolean allowUploads,
|
|
boolean allowUploads,
|
|
Context context,
|
|
Context context,
|
|
- FileDataStorageManager storageManager) {
|
|
|
|
-
|
|
|
|
- this(localFile, serverFile, user, syncFileContents, context, storageManager);
|
|
|
|
|
|
+ FileDataStorageManager storageManager,
|
|
|
|
+ boolean syncForInternalTwoWaySyncWorker) {
|
|
|
|
+ this(localFile, serverFile, user, syncFileContents, context, storageManager, syncForInternalTwoWaySyncWorker);
|
|
mAllowUploads = allowUploads;
|
|
mAllowUploads = allowUploads;
|
|
}
|
|
}
|
|
|
|
|