Add ability to gather metrics to BubbleManager.
[chromium-blink-merge.git] / chrome / browser / ui / autofill / credit_card_scanner_view.cc
blob0f6e5b6f5e2279666131b9b2544f70f27072efe2
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.
5 #include "chrome/browser/ui/autofill/credit_card_scanner_view.h"
7 namespace autofill {
9 // Not implemented on other platforms yet.
10 #if !defined(OS_ANDROID)
11 // static
12 bool CreditCardScannerView::CanShow() {
13 return false;
16 // static
17 scoped_ptr<CreditCardScannerView> CreditCardScannerView::Create(
18 const base::WeakPtr<CreditCardScannerViewDelegate>& delegate,
19 content::WebContents* web_contents) {
20 return scoped_ptr<CreditCardScannerView>();
22 #endif // !defined(OS_ANDROID)
24 } // namespace autofill