// 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 "components/supervised_user/test_support/supervised_user_url_filter_test_utils.h" #include "base/version_info/channel.h" namespace supervised_user { bool FakeURLFilterDelegate::SupportsWebstoreURL(const GURL& url) const { … } std::string FakePlatformDelegate::GetCountryCode() const { … } version_info::Channel FakePlatformDelegate::GetChannel() const { … } void FakePlatformDelegate::CloseIncognitoTabs() { … } } // namespace supervised_user