Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8490c3a4 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android Git Automerger
Browse files

am 34412965: am c2f8da87: Merge "Bring along BridgeContext for the ride." into klp-dev

* commit '34412965':
  Bring along BridgeContext for the ride.
parents 00a64103 34412965
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -1406,4 +1406,22 @@ public final class BridgeContext extends Context {
    public int getUserId() {
        return 0; // not used
    }

    @Override
    public File[] getExternalFilesDirs(String type) {
        // pass
        return new File[0];
    }

    @Override
    public File[] getObbDirs() {
        // pass
        return new File[0];
    }

    @Override
    public File[] getExternalCacheDirs() {
        // pass
        return new File[0];
    }
}