Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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. | |
| 4 | |
| 5 #include "chrome/browser/ui/views/autofill/card_unmask_prompt_views.h" | |
| 6 | |
| 7 namespace autofill { | |
| 8 | |
| 9 CardUnmaskPromptView* CreateCardUnmaskPromptView( | |
| 10 CardUnmaskPromptController* controller, | |
| 11 content::WebContents* web_contents) { | |
| 12 return new CardUnmaskPromptViews(controller, web_contents); | |
|
Evan Stade
2016/05/24 18:01:48
imo adding a whole new file for this, especially b
Elly Fong-Jones
2016/05/24 18:08:53
OS_MACOSX is true in mac_views_browser==1 builds,
| |
| 13 } | |
| 14 | |
| 15 } | |
| OLD | NEW |