blob: 476f6ca104f3a9ca1aa01a51cf8b69cab6f50f1e [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.net.test;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
/**
* A {@link android.app.Service} that creates a new {@link EmbeddedTestServer} when bound.
*/
public class EmbeddedTestServerService extends Service {
@Override
public IBinder onBind(Intent intent) {
return new EmbeddedTestServerImpl(this);
}
}