blob: 5d56ae6d8f72bbe5bd6d256e08a61bf9351d07fc [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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_