#ifndef CHROME_BROWSER_DEVICE_NOTIFICATIONS_DEVICE_SYSTEM_TRAY_ICON_RENDERER_H_
#define CHROME_BROWSER_DEVICE_NOTIFICATIONS_DEVICE_SYSTEM_TRAY_ICON_RENDERER_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/profiles/profile.h"
class DeviceSystemTrayIcon;
class DeviceSystemTrayIconRenderer {
public:
explicit DeviceSystemTrayIconRenderer(
DeviceSystemTrayIcon* device_system_tray_icon)
: device_system_tray_icon_(device_system_tray_icon) {}
explicit DeviceSystemTrayIconRenderer(const DeviceSystemTrayIcon&) = delete;
DeviceSystemTrayIconRenderer& operator=(const DeviceSystemTrayIcon&) = delete;
virtual ~DeviceSystemTrayIconRenderer() = default;
virtual void AddProfile(Profile* profile) = 0;
virtual void RemoveProfile(Profile* profile) = 0;
virtual void NotifyConnectionUpdated(Profile* profile) = 0;
protected:
raw_ptr<DeviceSystemTrayIcon> device_system_tray_icon_;
};
#endif