blob: 703e4cd72f03b6c75a4887fcc73fee4b4847b3ce [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/crosapi/download_status_updater_ash.h"
#include "base/notreached.h"
namespace crosapi {
DownloadStatusUpdaterAsh::DownloadStatusUpdaterAsh() = default;
DownloadStatusUpdaterAsh::~DownloadStatusUpdaterAsh() = default;
void DownloadStatusUpdaterAsh::BindReceiver(
mojo::PendingReceiver<mojom::DownloadStatusUpdater> pending_receiver) {
receivers_.Add(this, std::move(pending_receiver));
}
// TODO(http://b/279831939): Render in the appropriate System UI surface(s).
void DownloadStatusUpdaterAsh::Update(mojom::DownloadStatusPtr status) {
NOTIMPLEMENTED();
}
} // namespace crosapi