// 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. #ifndef CHROME_BROWSER_POLICY_MESSAGING_LAYER_UTIL_DM_TOKEN_RETRIEVER_PROVIDER_H_ #define CHROME_BROWSER_POLICY_MESSAGING_LAYER_UTIL_DM_TOKEN_RETRIEVER_PROVIDER_H_ #include <memory> #include "base/functional/callback.h" #include "components/reporting/client/dm_token_retriever.h" #include "components/reporting/client/report_queue_configuration.h" namespace reporting { // |DMTokenRetrieverProvider| is used to retrieve an appropriate // |DMTokenRetriever| for a given event type. These retrievers can later be used // to retrieve DM tokens of certain kinds (user/device, for instance). class DMTokenRetrieverProvider { … }; } // namespace reporting #endif // CHROME_BROWSER_POLICY_MESSAGING_LAYER_UTIL_DM_TOKEN_RETRIEVER_PROVIDER_H_