#include "components/web_resource/eula_accepted_notifier.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "components/prefs/pref_service.h"
#include "components/web_resource/web_resource_pref_names.h"
namespace web_resource {
EulaAcceptedNotifier::EulaAcceptedNotifier(PrefService* local_state)
: … { … }
EulaAcceptedNotifier::~EulaAcceptedNotifier() { … }
void EulaAcceptedNotifier::Init(Observer* observer) { … }
bool EulaAcceptedNotifier::IsEulaAccepted() { … }
EulaAcceptedNotifier* EulaAcceptedNotifier::Create(PrefService* local_state) { … }
void EulaAcceptedNotifier::NotifyObserver() { … }
void EulaAcceptedNotifier::OnPrefChanged() { … }
}