Index: chrome/browser/ui/autofill/card_unmask_prompt_view.cc |
diff --git a/chrome/browser/ui/autofill/card_unmask_prompt_view.cc b/chrome/browser/ui/autofill/card_unmask_prompt_view.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9bcf87fc1e851a22fd41d735bbebdb88d375eb70 |
--- /dev/null |
+++ b/chrome/browser/ui/autofill/card_unmask_prompt_view.cc |
@@ -0,0 +1,23 @@ |
+// Copyright 2014 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. |
+ |
+#include "chrome/browser/ui/autofill/card_unmask_prompt_view.h" |
+ |
+namespace autofill { |
+ |
+#if !defined(OS_ANDROID) |
+// static |
+CardUnmaskPromptView* CardUnmaskPromptView::CreateAndShow( |
+ content::WebContents* web_contents, |
+ const UnmaskCallback& finished) { |
+ return nullptr; |
+} |
+#endif |
+ |
+CardUnmaskPromptView::CardUnmaskPromptView() { |
+} |
+CardUnmaskPromptView::~CardUnmaskPromptView() { |
+} |
+ |
+} // namespace autofill |