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

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

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

* commit 'c2f8da87':
  Bring along BridgeContext for the ride.
parents 0c305430 c2f8da87
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];
    }
}