chromium/chrome/browser/usb/usb_status_icon_unittest.cc

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

#include "build/build_config.h"
#include "chrome/app/chrome_command_ids.h"
#include "chrome/browser/device_notifications/device_status_icon_unittest.h"
#include "chrome/browser/usb/usb_connection_tracker.h"
#include "chrome/browser/usb/usb_connection_tracker_factory.h"
#include "chrome/browser/usb/usb_system_tray_icon.h"
#include "chrome/browser/usb/usb_test_utils.h"
#include "chrome/grit/branded_strings.h"
#include "chrome/test/base/testing_browser_process.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"

#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "extensions/common/constants.h"
#include "extensions/common/extension.h"
#endif  // BUILDFLAG(ENABLE_EXTENSIONS)

class UsbStatusIconTest : public DeviceStatusIconTestBase {};

#if BUILDFLAG(ENABLE_EXTENSIONS)
TEST_F(UsbStatusIconTest, SingleProfileEmptyNameExtentionOrigins) {}

TEST_F(UsbStatusIconTest, SingleProfileNonEmptyNameExtentionOrigins) {}

TEST_F(UsbStatusIconTest, BounceConnectionExtensionOrigins) {}

TEST_F(UsbStatusIconTest, MultipleProfilesExtensionOrigins) {}

TEST_F(UsbStatusIconTest, NumCommandIdOverLimitExtensionOrigin) {}

TEST_F(UsbStatusIconTest, ExtensionRemoval) {}

TEST_F(UsbStatusIconTest, ProfileUserNameExtensionOrigin) {}
#endif  // BUILDFLAG(ENABLE_EXTENSIONS)