1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
8 #include "base/strings/string16.h"
12 class CardUnmaskPromptController
;
14 // The cross-platform UI interface which prompts the user to unlock a masked
15 // Wallet instrument (credit card). This object is responsible for its own
17 class CardUnmaskPromptView
{
19 static CardUnmaskPromptView
* CreateAndShow(
20 CardUnmaskPromptController
* controller
);
22 virtual void ControllerGone() = 0;
23 virtual void DisableAndWaitForVerification() = 0;
24 virtual void GotVerificationResult(const base::string16
& error_message
,
25 bool allow_retry
) = 0;
28 CardUnmaskPromptView() {}
29 virtual ~CardUnmaskPromptView() {}
32 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptView
);
35 } // namespace autofill
37 #endif // CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_