// 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/extensions/profile_util.h" #include "build/chromeos_buildflags.h" #include "chrome/browser/profiles/profile.h" #include "components/user_manager/user.h" #if BUILDFLAG(IS_CHROMEOS_ASH) #include "chrome/browser/ash/profiles/profile_helper.h" #endif // BUILDFLAG(IS_CHROMEOS_ASH) namespace extensions::profile_util { bool ProfileCanUseNonComponentExtensions(const Profile* profile) { … } #endif // BUILDFLAG(IS_CHROMEOS_ASH) } // namespace extensions::profile_util