blob: 30834b6fa315c6e3c4f5efcd508f61b029cc5c28 [file]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "missive/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