Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1790)

Side by Side Diff: chrome/browser/ui/autofill/card_unmask_prompt_view.h

Issue 969223002: Autofill wallet -- handle several classes of error in unmasking prompt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: local Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_ 6 #define CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
7 7
8 namespace autofill { 8 namespace autofill {
9 9
10 class CardUnmaskPromptController; 10 class CardUnmaskPromptController;
11 11
12 // The cross-platform UI interface which prompts the user to unlock a masked 12 // The cross-platform UI interface which prompts the user to unlock a masked
13 // Wallet instrument (credit card). This object is responsible for its own 13 // Wallet instrument (credit card). This object is responsible for its own
14 // lifetime. 14 // lifetime.
15 class CardUnmaskPromptView { 15 class CardUnmaskPromptView {
16 public: 16 public:
17 static CardUnmaskPromptView* CreateAndShow( 17 static CardUnmaskPromptView* CreateAndShow(
18 CardUnmaskPromptController* controller); 18 CardUnmaskPromptController* controller);
19 19
20 virtual void ControllerGone() = 0; 20 virtual void ControllerGone() = 0;
21 virtual void DisableAndWaitForVerification() = 0; 21 virtual void DisableAndWaitForVerification() = 0;
22 virtual void GotVerificationResult(bool success) = 0; 22 virtual void GotVerificationResult(const base::string16& error_message,
23 bool allow_retry) = 0;
23 24
24 protected: 25 protected:
25 CardUnmaskPromptView() {} 26 CardUnmaskPromptView() {}
26 virtual ~CardUnmaskPromptView() {} 27 virtual ~CardUnmaskPromptView() {}
27 28
28 private: 29 private:
29 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptView); 30 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptView);
30 }; 31 };
31 32
32 } // namespace autofill 33 } // namespace autofill
33 34
34 #endif // CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_ 35 #endif // CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc ('k') | chrome/browser/ui/autofill/chrome_autofill_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698