chromium/chrome/browser/ui/autofill/payments/create_card_unmask_prompt_view.h

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_CREATE_CARD_UNMASK_PROMPT_VIEW_H_
#define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_CREATE_CARD_UNMASK_PROMPT_VIEW_H_

namespace content {
class WebContents;
}

namespace autofill {

class CardUnmaskPromptController;
class CardUnmaskPromptView;

// Factory function for CardUnmaskPromptView on non-iOS platforms. This function
// has separate implementations for Views browsers, for Cocoa browsers, and for
// Android.
CardUnmaskPromptView* CreateCardUnmaskPromptView(
    CardUnmaskPromptController* controller,
    content::WebContents* web_contents);

}  // namespace autofill

#endif  // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_CREATE_CARD_UNMASK_PROMPT_VIEW_H_