blob: b205977f73163198f211eb4859fd5f2b6d6af5a4 [file] [log] [blame]
// 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_UI_ANDROID_AUTOFILL_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_
#define CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_
namespace content {
class WebContents;
}
namespace autofill {
// Opens the plus addresses management UI.
void ShowManagePlusAddressesPage(content::WebContents& web_contents);
// Opens the Google Wallet passes management UI web page in a Chrome Custom Tab.
void ShowGoogleWalletPassesPage(content::WebContents& web_contents);
} // namespace autofill
#endif // CHROME_BROWSER_UI_ANDROID_AUTOFILL_AUTOFILL_FALLBACK_SURFACE_LAUNCHER_H_