Home
last modified time | relevance | path

Searched refs:ChildConnectionAllocator (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DChildProcessLauncher.java55 private static class ChildConnectionAllocator { class in ChildProcessLauncher
73 public ChildConnectionAllocator(boolean inSandbox) { in ChildConnectionAllocator() method in ChildProcessLauncher.ChildConnectionAllocator
132 private static final ChildConnectionAllocator sSandboxedChildConnectionAllocator =
133 new ChildConnectionAllocator(true);
134 private static final ChildConnectionAllocator sPrivilegedChildConnectionAllocator =
135 new ChildConnectionAllocator(false);
151 private static ChildConnectionAllocator getConnectionAllocator(boolean inSandbox) { in getConnectionAllocator()