// Copyright 2017 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.components.background_task_scheduler.internal;
import android.content.Context;
import org.chromium.components.background_task_scheduler.BackgroundTask;
import org.chromium.components.background_task_scheduler.TaskParameters;
/** Dummy implementation of a background task used for testing. */
class TestBackgroundTask implements BackgroundTask {
public TestBackgroundTask() {}
@Override
public boolean onStartTask(
Context context, TaskParameters taskParameters, TaskFinishedCallback callback) {
return false;
}
@Override
public boolean onStopTask(Context context, TaskParameters taskParameters) {
return false;
}
}