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

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

Issue 1138653003: Move card unmask interfaces and controller into the autofill component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missing override declaration Created 5 years, 7 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
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
6 #define CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
7
8 #include "base/strings/string16.h"
9
10 namespace autofill {
11
12 class CardUnmaskPromptController;
13
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
16 // lifetime.
17 class CardUnmaskPromptView {
18 public:
19 static CardUnmaskPromptView* CreateAndShow(
20 CardUnmaskPromptController* controller);
21
22 virtual void ControllerGone() = 0;
23 virtual void DisableAndWaitForVerification() = 0;
24 virtual void GotVerificationResult(const base::string16& error_message,
25 bool allow_retry) = 0;
26
27 protected:
28 CardUnmaskPromptView() {}
29 virtual ~CardUnmaskPromptView() {}
30
31 private:
32 DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptView);
33 };
34
35 } // namespace autofill
36
37 #endif // CHROME_BROWSER_UI_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698