chromium/components/download/internal/background_service/test/test_device_status_listener.h

// 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.

#ifndef COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_TEST_TEST_DEVICE_STATUS_LISTENER_H_
#define COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_TEST_TEST_DEVICE_STATUS_LISTENER_H_

#include "base/memory/weak_ptr.h"
#include "components/download/internal/background_service/scheduler/device_status_listener.h"

namespace download {
namespace test {

// Test device status listener can directly notify the observer about battery
// and network changes, without calling external class methods.
class TestDeviceStatusListener : public DeviceStatusListener {};

}  // namespace test
}  // namespace download

#endif  // COMPONENTS_DOWNLOAD_INTERNAL_BACKGROUND_SERVICE_TEST_TEST_DEVICE_STATUS_LISTENER_H_