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

Unified Diff: chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_tester_cocoa.h

Issue 904613006: Autofill: First step toward CVC unmask prompt dialog on OSX. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename new files and classes to include word 'View'. Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_tester_cocoa.h
diff --git a/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_tester_cocoa.h b/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_tester_cocoa.h
new file mode 100644
index 0000000000000000000000000000000000000000..6045318445cf31e7001e8f99e63f25c87da5eb1e
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/card_unmask_prompt_view_tester_cocoa.h
@@ -0,0 +1,30 @@
+// Copyright 2015 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_COCOA_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_TESTER_COCOA_H_
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_TESTER_COCOA_H_
+
+#include "chrome/browser/ui/autofill/card_unmask_prompt_view_tester.h"
+
+namespace autofill {
+
+class CardUnmaskPromptViewBridge;
+
+class CardUnmaskPromptViewTesterCocoa : public CardUnmaskPromptViewTester {
+ public:
+ explicit CardUnmaskPromptViewTesterCocoa(CardUnmaskPromptViewBridge* bridge);
+ ~CardUnmaskPromptViewTesterCocoa() override;
+
+ // CardUnmaskPromptViewTester implementation:
+ void CancelForTesting() override;
+
+ private:
+ CardUnmaskPromptViewBridge* bridge_;
+
+ DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptViewTesterCocoa);
+};
+
+} // autofill
+
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_CARD_UNMASK_PROMPT_VIEW_TESTER_COCOA_H_

Powered by Google App Engine
This is Rietveld 408576698