Skip to content

Commit

Permalink
Remove mojo KeyringInfo and lazy keyrings (#20488)
Browse files Browse the repository at this point in the history
  • Loading branch information
supermassive authored Oct 20, 2023
1 parent e934568 commit 6b1d38c
Show file tree
Hide file tree
Showing 30 changed files with 243 additions and 495 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import org.chromium.brave_wallet.mojom.ByteArrayStringUnion;
import org.chromium.brave_wallet.mojom.CoinType;
import org.chromium.brave_wallet.mojom.JsonRpcService;
import org.chromium.brave_wallet.mojom.KeyringId;
import org.chromium.brave_wallet.mojom.KeyringService;
import org.chromium.brave_wallet.mojom.KeyringServiceObserver;
import org.chromium.brave_wallet.mojom.SignAllTransactionsRequest;
Expand Down Expand Up @@ -296,13 +295,13 @@ private void updatePendingAccountCreationRequest() {
}

@Override
public void keyringCreated(@KeyringId.EnumType int keyringId) {}
public void walletCreated() {}

@Override
public void walletRestored() {}

@Override
public void keyringReset() {}
public void walletReset() {}

@Override
public void locked() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private void handleAddAccountResult(AccountInfo result, Callbacks.Callback1<Bool
}

@Override
public void keyringCreated(@KeyringId.EnumType int keyringId) {
public void walletCreated() {
update();
}

Expand All @@ -170,7 +170,7 @@ public void walletRestored() {
}

@Override
public void keyringReset() {
public void walletReset() {
update();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

import org.chromium.brave_wallet.mojom.AccountInfo;
import org.chromium.brave_wallet.mojom.CoinType;
import org.chromium.brave_wallet.mojom.KeyringId;
import org.chromium.brave_wallet.mojom.KeyringServiceObserver;
import org.chromium.mojo.system.MojoException;

Expand All @@ -17,9 +16,9 @@ public class KeyringServiceObserverImpl implements KeyringServiceObserver {
public interface KeyringServiceObserverImplDelegate {
default void locked() {}
default void backedUp() {}
default void keyringCreated(@KeyringId.EnumType int keyringId) {}
default void walletCreated() {}
default void walletRestored() {}
default void keyringReset() {}
default void walletReset() {}
default void unlocked() {}
default void accountsChanged() {}
default void accountsAdded(AccountInfo[] addedAccounts) {}
Expand All @@ -36,8 +35,8 @@ public KeyringServiceObserverImpl(KeyringServiceObserverImplDelegate delegate) {
}

@Override
public void keyringCreated(@KeyringId.EnumType int keyringId) {
if (isActive()) getRef().keyringCreated(keyringId);
public void walletCreated() {
if (isActive()) getRef().walletCreated();
}

@Override
Expand All @@ -46,8 +45,8 @@ public void walletRestored() {
}

@Override
public void keyringReset() {
if (isActive()) getRef().keyringReset();
public void walletReset() {
if (isActive()) getRef().walletReset();
}

@Override
Expand Down
Loading

0 comments on commit 6b1d38c

Please sign in to comment.