// Copyright 2024 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_AUTOFILL_ANDROID_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_
#define CHROME_BROWSER_AUTOFILL_ANDROID_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_

namespace content {
class WebContents;
}

namespace autofill {

// Opens the Google Wallet passes management UI web page in a Chrome Custom Tab.
void ShowGoogleWalletPassesPage(content::WebContents& web_contents);

// Opens the Google Wallet private passes help center page in Cct.
void ShowGoogleWallePrivatePassesHelpCenterPageInCct(
    content::WebContents& web_contents);

}  // namespace autofill

#endif  // CHROME_BROWSER_AUTOFILL_ANDROID_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_
