Merge pull request #1424 from open-keychain/import-proxy
Shifted proxy logic to ImportKeysListCloudLoader
This commit is contained in:
@@ -20,7 +20,9 @@ package org.sufficientlysecure.keychain.operations.results;
|
||||
|
||||
import android.os.Parcel;
|
||||
|
||||
public class GetKeyResult extends OperationResult {
|
||||
import org.sufficientlysecure.keychain.service.input.RequiredInputParcel;
|
||||
|
||||
public class GetKeyResult extends InputPendingResult {
|
||||
|
||||
public int mNonPgpPartsCount;
|
||||
|
||||
@@ -36,6 +38,10 @@ public class GetKeyResult extends OperationResult {
|
||||
super(result, log);
|
||||
}
|
||||
|
||||
public GetKeyResult(OperationLog log, RequiredInputParcel requiredInput) {
|
||||
super(log, requiredInput);
|
||||
}
|
||||
|
||||
public static final int RESULT_ERROR_NO_VALID_KEYS = RESULT_ERROR + 8;
|
||||
public static final int RESULT_ERROR_NO_PGP_PARTS = RESULT_ERROR + 16;
|
||||
public static final int RESULT_ERROR_QUERY_TOO_SHORT = RESULT_ERROR + 32;
|
||||
|
||||
Reference in New Issue
Block a user