blob: 55485b852572aedfbf8d1c04090ee7bd6b26b407 [file] [log] [blame]
// 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_SIGNALS_USER_DELEGATE_IMPL_H_
#define CHROME_BROWSER_ENTERPRISE_SIGNALS_USER_DELEGATE_IMPL_H_
#include "base/memory/raw_ptr.h"
#include "components/device_signals/core/browser/user_delegate.h"
class Profile;
namespace signin {
class IdentityManager;
} // namespace signin
namespace enterprise_signals {
class UserDelegateImpl : public device_signals::UserDelegate {
public:
UserDelegateImpl(Profile* profile,
signin::IdentityManager* identity_manager,
SignalsDependencyDelegate* device_trust_connector_service);
~UserDelegateImpl() override;
UserDelegateImpl(const UserDelegateImpl&) = delete;
UserDelegateImpl& operator=(const UserDelegateImpl&) = delete;
// UserDelegate:
#if BUILDFLAG(IS_CHROMEOS)
bool IsSigninContext() const override;
#endif // BUILDFLAG(IS_CHROMEOS)
bool IsAffiliated() const override;
bool IsManagedUser() const override;
bool IsSameUser(const GaiaId& gaia_id) const override;
std::set<policy::PolicyScope> GetPolicyScopesNeedingSignals() const override;
private:
const raw_ptr<Profile> profile_;
const raw_ptr<signin::IdentityManager> identity_manager_;
// The connector service in charge of giving information about whether the
// Device Trust connector is enabled or not. Can be nullptr if the
// browser/profile is in an unsupported context (e.g. incognito).
const raw_ptr<SignalsDependencyDelegate> signals_dependency_delegate_ =
nullptr;
};
} // namespace enterprise_signals
#endif // CHROME_BROWSER_ENTERPRISE_SIGNALS_USER_DELEGATE_IMPL_H_