// 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. #ifndef CHROME_BROWSER_PAYMENTS_WEBAPPS_TWA_PACKAGE_HELPER_H_ #define CHROME_BROWSER_PAYMENTS_WEBAPPS_TWA_PACKAGE_HELPER_H_ #include <string> #include "base/functional/callback.h" #include "build/chromeos_buildflags.h" #if BUILDFLAG(IS_CHROMEOS_LACROS) #include "base/memory/weak_ptr.h" #include "base/one_shot_event.h" #include "chromeos/crosapi/mojom/web_app_service.mojom.h" #endif namespace content { class RenderFrameHost; } // namespace content namespace payments { // Used to obtain the Android package name of a Trusted Web Activity app window. class TwaPackageHelper { … }; } // namespace payments #endif // CHROME_BROWSER_PAYMENTS_WEBAPPS_TWA_PACKAGE_HELPER_H_