// 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/autofill/ui/ui_util.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/signin/identity_manager_factory.h" #include "components/signin/public/identity_manager/account_info.h" #include "components/signin/public/identity_manager/identity_manager.h" namespace autofill { std::optional<AccountInfo> GetPrimaryAccountInfoFromBrowserContext( content::BrowserContext* context) { … } } // namespace autofill