1) Break out appropriate components. 2) Switch the incoming pipeline from SendReceiveService to the JobManager.
8 lines
240 B
Java
8 lines
240 B
Java
package org.thoughtcrime.securesms;
|
|
|
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
|
|
|
public interface PassphraseRequiredActivity {
|
|
public void onMasterSecretCleared();
|
|
public void onNewMasterSecret(MasterSecret masterSecret);
|
|
}
|