blob: 50230d9bf1338b7b7b282552e93302eabaa782b2 [file] [log] [blame]
// Copyright 2019 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_AUTOFILL_PAYMENTS_SAVE_UPI_BUBBLE_H_
#define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_UPI_BUBBLE_H_
namespace autofill {
// The desktop UI interface which displays the "Remember your UPI ID?" bubble.
// This object is responsible for its own lifetime.
class SaveUPIBubble {
public:
// Called to close the bubble and prevent future callbacks into the
// controller.
virtual void Hide() = 0;
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_UPI_BUBBLE_H_