chromium/chrome/browser/enterprise/connectors/device_trust/signals/decorators/common/context_signals_decorator.h

// Copyright 2022 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_ENTERPRISE_CONNECTORS_DEVICE_TRUST_SIGNALS_DECORATORS_COMMON_CONTEXT_SIGNALS_DECORATOR_H_
#define CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_SIGNALS_DECORATORS_COMMON_CONTEXT_SIGNALS_DECORATOR_H_

#include <memory>
#include <optional>

#include "base/time/time.h"
#include "base/values.h"
#include "chrome/browser/enterprise/connectors/device_trust/signals/decorators/common/signals_decorator.h"

namespace enterprise_signals {
class ContextInfoFetcher;
struct ContextInfo;
}  // namespace enterprise_signals

namespace enterprise_connectors {

// Definition of the SignalsDecorator that uses the ContextInfoFetcher to get
// device signals. The signal collected here are supported on all platforms and
// are equivalent to the signals exposed through the
// chrome.enterprise.reportingPrivate.getContextInfo private extension API.
class ContextSignalsDecorator : public SignalsDecorator {};

}  // namespace enterprise_connectors

#endif  // CHROME_BROWSER_ENTERPRISE_CONNECTORS_DEVICE_TRUST_SIGNALS_DECORATORS_COMMON_CONTEXT_SIGNALS_DECORATOR_H_