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

Commit b9be11c3 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Bring along BridgeContext for the ride.

Change-Id: Ic11c0df447c82be3922d529f18a290cfdfec6b05
parent 7f392def
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];
    }
}