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

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

am b144b5f1: am e92bd4c0: am 2d87ba63: Merge "Allow I/O when installing...

am b144b5f1: am e92bd4c0: am 2d87ba63: Merge "Allow I/O when installing providers." into lmp-mr1-dev

* commit 'b144b5f1':
  Allow I/O when installing providers.
parents f3f9966a b144b5f1
Loading
Loading
Loading
Loading
+6 −1
Original line number Original line Diff line number Diff line
@@ -2513,7 +2513,12 @@ public final class ActivityThread {
    }
    }


    public void handleInstallProvider(ProviderInfo info) {
    public void handleInstallProvider(ProviderInfo info) {
        final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites();
        try {
            installContentProviders(mInitialApplication, Lists.newArrayList(info));
            installContentProviders(mInitialApplication, Lists.newArrayList(info));
        } finally {
            StrictMode.setThreadPolicy(oldPolicy);
        }
    }
    }


    private void handleEnterAnimationComplete(IBinder token) {
    private void handleEnterAnimationComplete(IBinder token) {