blob: 698e565f679b9e74210b2ae8da754a5aa22c0cd4 [file] [log] [blame]
// Copyright 2021 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/reporting/client/empty_dm_token_retriever.h"
#include <utility>
#include "base/functional/callback.h"
namespace reporting {
void EmptyDMTokenRetriever::RetrieveDMToken(
DMTokenRetriever::CompletionCallback completion_cb) {
std::move(completion_cb).Run("");
}
} // namespace reporting