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

#include "components/download/public/background_service/test/empty_logger.h"

#include "base/values.h"

namespace download {
namespace test {

void EmptyLogger::AddObserver(Observer* observer) {}

void EmptyLogger::RemoveObserver(Observer* observer) {}

base::DictValue EmptyLogger::GetServiceStatus() {
  return base::DictValue();
}

base::ListValue EmptyLogger::GetServiceDownloads() {
  return base::ListValue();
}

}  // namespace test
}  // namespace download
