• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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(Intent bindIntent, int bindFlags,
11             ChildServiceConnectionDelegate delegate, String instanceName);
12 }
13