// Copyright 2023 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_UI_VIEWS_DEVICE_SIGNALS_CONSENT_CONSENT_DIALOG_COORDINATOR_H_ #define CHROME_BROWSER_UI_VIEWS_DEVICE_SIGNALS_CONSENT_CONSENT_DIALOG_COORDINATOR_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/ui/device_signals_consent/consent_requester.h" #include "components/prefs/pref_change_registrar.h" namespace ui { class DialogModel; } namespace views { class Widget; } class Browser; class Profile; // View class for managing the device signals consent dialog widget. class ConsentDialogCoordinator : public ConsentRequester { … }; #endif // CHROME_BROWSER_UI_VIEWS_DEVICE_SIGNALS_CONSENT_CONSENT_DIALOG_COORDINATOR_H_