// 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.

#include "chrome/browser/usb/usb_status_icon.h"

#include "chrome/browser/device_notifications/device_status_icon_renderer.h"
#include "chrome/browser/ui/chrome_pages.h"
#include "chrome/grit/generated_resources.h"

UsbStatusIcon::UsbStatusIcon()
    : UsbSystemTrayIcon(std::make_unique<DeviceStatusIconRenderer>(
          this,
          chrome::HelpSource::kWebUSD,
          IDS_WEBUSB_SYSTEM_TRAY_ICON_ABOUT_USB_DEVICE)) {}

UsbStatusIcon::~UsbStatusIcon() = default;
