Index: chrome/browser/ui/autofill/card_unmask_prompt_view.h |
diff --git a/chrome/browser/ui/autofill/card_unmask_prompt_view.h b/chrome/browser/ui/autofill/card_unmask_prompt_view.h |
index d075ecd0b0ad2a9fce5b166559478fe2665ef068..365389ff9b3b256ba2f09fe1e1e22f53edb0015c 100644 |
--- a/chrome/browser/ui/autofill/card_unmask_prompt_view.h |
+++ b/chrome/browser/ui/autofill/card_unmask_prompt_view.h |
@@ -21,9 +21,12 @@ class CardUnmaskPromptView { |
virtual void DisableAndWaitForVerification() = 0; |
virtual void GotVerificationResult(bool success) = 0; |
+ // Simulates the user pressing 'Cancel' to abort the dialog. |
+ virtual void CancelForTesting() = 0; |
Evan Stade
2015/02/13 03:27:05
instead of adding this here, create another interf
bondd
2015/02/17 19:39:59
Done.
|
+ |
protected: |
- CardUnmaskPromptView(); |
- virtual ~CardUnmaskPromptView(); |
+ CardUnmaskPromptView() {} |
+ virtual ~CardUnmaskPromptView() {} |
private: |
DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptView); |