1 // Copyright 2020 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 package org.chromium.base.process_launcher; 6 7 import android.content.Intent; 8 9 /* package */ interface ChildServiceConnectionFactory { createConnection( Intent bindIntent, int bindFlags, ChildServiceConnectionDelegate delegate, String instanceName)10 ChildServiceConnection createConnection( 11 Intent bindIntent, 12 int bindFlags, 13 ChildServiceConnectionDelegate delegate, 14 String instanceName); 15 } 16