c2dcf7ae74
1) Consolidate all of the KeyCachingService interaction into a single mixin. Activities extend delegates which call through to the mixin. 2) Switch Activity increment/decrement triggers from onStop to onPause in order to account for some screen locks that don't stop activities.
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);
|
|
}
|