blob: 8122a9a71cb433df3050bb458daef7fa82df97db [file] [log] [blame]
// 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/payments/credit_card_scanner_view.h"
#include "build/build_config.h"
namespace autofill {
// Not implemented on other platforms yet.
#if !defined(OS_ANDROID)
// static
bool CreditCardScannerView::CanShow() {
return false;
}
// static
std::unique_ptr<CreditCardScannerView> CreditCardScannerView::Create(
const base::WeakPtr<CreditCardScannerViewDelegate>& delegate,
content::WebContents* web_contents) {
return nullptr;
}
#endif // !defined(OS_ANDROID)
} // namespace autofill