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

Commit c2f8da87 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

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

parents 436b6ee3 b9be11c3
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];
    }
}