aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java
diff options
context:
space:
mode:
authorAdithya Abraham Philip <adithyaphilip@gmail.com>2015-06-30 20:22:00 +0530
committerAdithya Abraham Philip <adithyaphilip@gmail.com>2015-06-30 20:22:00 +0530
commit51d3daeccdc697d948c597931d804d738132b8ed (patch)
tree87f928ebac27b348ece849713911fdaf63fcc94b /OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java
parent4b2e85794f691d6b71001d2394df17c0ba5b1227 (diff)
downloadopen-keychain-51d3daeccdc697d948c597931d804d738132b8ed.tar.gz
open-keychain-51d3daeccdc697d948c597931d804d738132b8ed.tar.bz2
open-keychain-51d3daeccdc697d948c597931d804d738132b8ed.zip
made CryptoOperationFragment implement OperationHelper.Callback
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java')
-rw-r--r--OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java
index d70af4058..96767463e 100644
--- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java
+++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptListFragment.java
@@ -254,12 +254,12 @@ public class DecryptListFragment
}
@Override
- protected boolean onCryptoSetProgress(String msg, int progress, int max) {
+ public boolean onCryptoSetProgress(String msg, int progress, int max) {
mAdapter.setProgress(mCurrentInputUri, progress, max, msg);
return true;
}
@Override
- protected void onCryptoOperationError(DecryptVerifyResult result) {
+ public void onCryptoOperationError(DecryptVerifyResult result) {
final Uri uri = mCurrentInputUri;
mCurrentInputUri = null;
@@ -269,7 +269,7 @@ public class DecryptListFragment
}
@Override
- protected void onCryptoOperationSuccess(DecryptVerifyResult result) {
+ public void onCryptoOperationSuccess(DecryptVerifyResult result) {
Uri uri = mCurrentInputUri;
mCurrentInputUri = null;
@@ -433,7 +433,7 @@ public class DecryptListFragment
}
@Override
- protected PgpDecryptVerifyInputParcel createOperationInput() {
+ public PgpDecryptVerifyInputParcel createOperationInput() {
if (mCurrentInputUri == null) {
if (mPendingInputUris.isEmpty()) {